//Edit Course private void EditCourse_Click(object sender, RoutedEventArgs e) { if (AdminView.selectedCourseList != null) { CourseWindow editCourseWindow = new CourseWindow(AdminView.selectedCourseList); editCourseWindow.Show(); } else { MessageBox.Show("You haven't selected a coruse from the dowpdown list yet!", "ERROR: Please make a selection.", MessageBoxButton.OK, MessageBoxImage.Warning); } }
//New Course private void NewCourse_Click(object sender, RoutedEventArgs e) { CourseWindow newCourseWindow = new CourseWindow(new tblCours()); newCourseWindow.Show(); }