private void ListBox_SelectionChanged(object sender, SelectionChangedEventArgs e) { if (PhotoView.IsSelected) { AppFrame.Navigate(typeof(Domain.Photo.View)); } if (PairView.IsSelected) { AppFrame.Navigate(typeof(Domain.Pair.View)); } if (StudentView.IsSelected) { AppFrame.Navigate(typeof(Domain.Student.View)); } // if (_REPLACEME_View.IsSelected) // { // AppFrame.Navigate(typeof(Domain._REPLACEME_.View)); // } string nameOfSelection = ((ListBoxItem)e.AddedItems[0]).Name; if (nameOfSelection == "Load") { AppFrame.Navigate(typeof(OpeningView)); UserActionPresenter.PresentMessageOkCancel("Are you sure you want to LOAD model data?", "Load", new RelayCommand(AppConfig.Load)); } if (nameOfSelection == "Save") { AppFrame.Navigate(typeof(OpeningView)); UserActionPresenter.PresentMessageOkCancel("Are you sure you want to SAVE model data?", "Save", new RelayCommand(AppConfig.Save)); } }
private void ListBox_SelectionChanged(object sender, SelectionChangedEventArgs e) { if (CustomerView.IsSelected) { AppFrame.Navigate(typeof(Domain.Customer.View)); } if (CarView.IsSelected) { AppFrame.Navigate(typeof(Domain.Car.View)); } if (SalespersonView.IsSelected) { AppFrame.Navigate(typeof(Domain.Salesperson.View)); } if (SalesView.IsSelected) { AppFrame.Navigate(typeof(Domain.Sale.View)); } string nameOfSelection = ((ListBoxItem)e.AddedItems[0]).Name; if (nameOfSelection == "Load") { AppFrame.Navigate(typeof(OpeningView)); UserActionPresenter.PresentMessageOkCancel("Are you sure you want to LOAD model data?", "Load", new RelayCommand(AppConfig.Load)); } if (nameOfSelection == "Save") { AppFrame.Navigate(typeof(OpeningView)); UserActionPresenter.PresentMessageOkCancel("Are you sure you want to SAVE model data?", "Save", new RelayCommand(AppConfig.Save)); } if (nameOfSelection == "Quit") { AppFrame.Navigate(typeof(OpeningView)); UserActionPresenter.PresentMessageOkCancel("Are you sure you want to QUIT?", "QUIT", new RelayCommand(Application.Current.Exit)); } }