Example #1
0
 public ModalDialogViewModel(string message, string header, DialogButtons buttons, params ICommand[] commands)
 {
     Init(message, header, ModalDialogViewModel.GetButtonDefaultStrings(buttons), commands);
 }
Example #2
0
 public ModalDialogViewModel(string message, DialogButtons buttons, params ICommand[] commands)
 {
     Init(message, Application.Current.MainWindow.GetType().Assembly.GetName().Name, ModalDialogViewModel.GetButtonDefaultStrings(buttons), commands);
 }