private void menuAbout_Click(object sender, System.EventArgs e) { About about = new About(); about.CreateControl(); about.StartPosition = FormStartPosition.CenterScreen; about.ShowDialog(); }
private void menuHelpAbout_Click(object sender, System.EventArgs e) { About about = new About(); about.ShowDialog(); }