Пример #1
0
        private void EditTeacherButton_Click(object sender, RoutedEventArgs e)
        {
            if (EditTeacherWindow != null)
            {
                return;
            }

            EditTeacherWindow = new EditTeacherWindow(this, _connectionString, _userCredential,
                                                      Teachers[TeachersDataGrid.SelectedIndex]);
            EditTeacherWindow.Show();
        }
Пример #2
0
        private void ExitButton_Click(object sender, RoutedEventArgs e)
        {
            new AuthorizationWindow().Show();

            if (RegistrationWindow != null)
            {
                RegistrationWindow.Close();
            }
            if (AddStudentWindow != null)
            {
                AddStudentWindow.Close();
            }
            if (EditStudentWindow != null)
            {
                EditStudentWindow.Close();
            }
            if (AddGroupWindow != null)
            {
                AddGroupWindow.Close();
            }
            if (EditGroupWindow != null)
            {
                EditGroupWindow.Close();
            }
            if (AddSubjectInfoWindow != null)
            {
                AddSubjectInfoWindow.Close();
            }
            if (EditSubjectInfoWindow != null)
            {
                EditSubjectInfoWindow.Close();
            }
            if (AddTeacherWindow != null)
            {
                AddTeacherWindow.Close();
            }
            if (EditTeacherWindow != null)
            {
                EditTeacherWindow.Close();
            }
            if (AddAssociatedSubjectWindow != null)
            {
                AddAssociatedSubjectWindow.Close();
            }
            if (EditAssociatedSubjectWindow != null)
            {
                EditAssociatedSubjectWindow.Close();
            }

            Close();
        }