private void CoursesForTheSemester_FormClosed(object sender, FormClosedEventArgs e)
        {
            this.Close();
            MainStudent s = (MainStudent)this.Owner;

            s.Show();
        }
예제 #2
0
        private void EmailsOfLecturers_FormClosed(object sender, FormClosedEventArgs e)
        {
            this.Close();
            MainStudent s = (MainStudent)this.Owner;

            s.Show();
        }
예제 #3
0
        private void StudentEditSchedule_FormClosed(object sender, FormClosedEventArgs e)
        {
            this.Close();
            MainStudent s = (MainStudent)this.Owner;

            s.Show();
        }
예제 #4
0
        private void AllCompulsoryCourses_FormClosed(object sender, FormClosedEventArgs e)
        {
            this.Close();
            MainStudent s = (MainStudent)this.Owner;

            s.Show();
        }