static public void ShowAbout()
 {
     if (SingleInstance == null || SingleInstance.IsDisposed)
     {
         SingleInstance = new FormAbout();
     }
     SingleInstance.Show();
 }
Exemple #2
0
 void TitleBarMenuAboutClick(object sender, EventArgs e)
 {
     FormAbout.ShowAbout();
 }
Exemple #3
0
 private void aboutUsToolStripMenuItem_Click(object sender, EventArgs e)
 {
     FormAbout.ShowAbout();
 }