예제 #1
0
 private static void OnShutdownPhoenixCommandExecuted(object sender, ExecutedRoutedEventArgs e)
 {
     if (
         MessageWindowHelpers.Show(null, SharedResources.CloseQuestion, MessageBoxButton.YesNo,
                                   MessageBoxImage.Question) == MessageBoxResult.Yes)
     {
         Utils.GetWindow <MainWindow>().AnimateableClose();
     }
 }
예제 #2
0
 private static void OnOpenSettingsWindowCommandExecuted(object sender, ExecutedRoutedEventArgs e)
 {
     new SettingsWindow().ShowDialog(Utils.GetWindow <MainWindow>());
 }
예제 #3
0
 private static void OnOpenRolesWindowCommandExecuted(object sender, ExecutedRoutedEventArgs e)
 {
     new RolesWindow().ShowDialog(Utils.GetWindow <MainWindow>());
     AppContext.Instanse.ReloadCredentials();
     Utils.GetWindow <MainWindow>().BindCommands();
 }
예제 #4
0
 private static void OnOpenSearchWindowInLogsCommandExecuted(object sender, ExecutedRoutedEventArgs e)
 {
     new SearchWindow("InLogs").ShowDialog(Utils.GetWindow <MainWindow>());
 }
예제 #5
0
 private static void OnOpenRepositoryMaterialsAndItemsWindowCommandExecuted(object sender,
                                                                            ExecutedRoutedEventArgs e)
 {
     new RepositoryMaterialsAndItemsWindow().ShowDialog(Utils.GetWindow <MainWindow>());
 }
예제 #6
0
 private static void OnShowNotificationsWindowCommandExecuted(object sender, ExecutedRoutedEventArgs e)
 {
     new NotificationsWindow().ShowDialog(Utils.GetWindow <MainWindow>());
 }