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();
        }