//START Overloads private void aboutToolStripMenuItem_Click() { using (AboutBox1 box = new AboutBox1()) { box.ShowDialog(this); } }
private void aboutToolStripMenuItem_Click(object sender, EventArgs e) { using (AboutBox1 box = new AboutBox1()) { box.ShowDialog(this); } }