private void AboutUs() { TAbout aboutPage = new TAbout(); HIOStaticValues.CloseDuplicateWindows(); string ver = System.Reflection.Assembly.GetExecutingAssembly().GetName().Version.ToString(); aboutPage.Show(ver); }
private static void About_Click(object sender, EventArgs e) { try { CloseDuplicateWindows(); string ver = Assembly.GetExecutingAssembly().GetName().Version.ToString(); TAbout aboutPage = new TAbout(); aboutPage.Show(ver); } catch { TAbout aboutPage = new TAbout(); aboutPage.Show("1.0.68"); } }