private void deleteGroupToolStripMenuItem_Click(object sender, EventArgs e) { DeleteGroup l = DeleteGroup.getInstance(); l.Show(); this.Hide(); }
public static DeleteGroup getInstance() { if (l == null) { l = new DeleteGroup(); l.Show(); return(l); } else { return(l); } }