/// <summary> /// Show the About form /// </summary> private void msAbout_Click(object sender, EventArgs e) { using (About fmAbout = new About()) { fmAbout.ShowDialog(); } }
/// <summary> /// Show the About form /// </summary> private void MnTS_About_Click(object sender, EventArgs e) { About fmAbout = new About(); fmAbout.ShowDialog(); fmAbout.Dispose(); }