예제 #1
0
        private void btnAddStudent_Click(object sender, EventArgs e)
        {
            //Set the pannel height
            panelLeft.Height = btnAddStudent.Height;
            panelLeft.Top    = btnAddStudent.Top;

            //Go to add student form
            FormAddStudents frm = FormAddStudents.SetGUIPlacements();

            this.Hide();
            frm.Show();
        }
예제 #2
0
 public static FormAddStudents SetGUIPlacements()
 {
     if (instance == null || instance.IsDisposed)
     {
         instance = new FormAddStudents();
     }
     else
     {
         instance.BringToFront();
     }
     return(instance);
 }