Example #1
0
        private void Btn_InstructorsMenu_Click(object sender, RoutedEventArgs e)
        {
            InstructorsWindow instructorsWindow = new InstructorsWindow();

            instructorsWindow.Show();
            this.Close();
        }
        private void Btn_ReturnInstructorsWindow_Click(object sender, RoutedEventArgs e)
        {
            InstructorsWindow _InstructorsWindow = new InstructorsWindow();

            _InstructorsWindow.Show();

            this.Close();
        }