using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Text; using System.Windows.Forms; using Nullstack.Utilities.Guidgen2.Properties; namespace Nullstack.Utilities.Guidgen2 { public partial class About : Form { public About() { InitializeComponent(); btnOk.Text = Resources.btnOK; btnOk.Click += btnOK_Click; lblDescription.Text = Application.ProductName + " " + Application.ProductVersion + Environment.NewLine + Environment.NewLine + Resources.strAboutDesc; } private void btnOK_Click(object sender, EventArgs e) { this.Close(); } } }