private void StudentRegistration_Click(object sender, EventArgs e) { if (addStudent == null) { addStudent = new AddNewStudent(); addStudent.Show(); } else { addStudent.WindowState = FormWindowState.Normal; addStudent.Show(); addStudent.Focus(); } }
private void studentRegisterationsToolStripMenuItem_Click(object sender, EventArgs e) { if (addStudent == null || addStudent.IsDisposed) { addStudent = new AddNewStudent(); addStudent.Show(); } else { addStudent.WindowState = FormWindowState.Normal; addStudent.Show(); addStudent.Focus(); } }
private void Add_Click(object sender, EventArgs e) { AddNewStudent studentAdd = new AddNewStudent(); studentAdd.Show(); }