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