private void aboutToolStripMenuItem_Click(object sender, EventArgs e) { FormAboutBox aboutBox = new FormAboutBox(iHelper); aboutBox.ShowDialog(); aboutBox.Dispose(); }
private void MenuItemAboutClick(object sender, EventArgs e) { FormAboutBox aboutDialog = new FormAboutBox(iHelper); aboutDialog.ShowDialog(); aboutDialog.Dispose(); }
void Lbl_about_Click(object sender, System.EventArgs e) { FormAboutBox aboutBox = new FormAboutBox(); aboutBox.ShowDialog(); }