Exemplo n.º 1
0
 public ConfirmViewModel(IDialogService dialogService, string tabName)
 {
     ConfirmText    = "Delete tab: \"" + tabName + "\"? (Y/N)";
     _dialogService = dialogService;
     Finish         = new Commands.BoolCommand(finish);
 }
Exemplo n.º 2
0
 public NewTabViewModel(IDialogService dialogService)
 {
     _text          = "";
     _dialogService = dialogService;
     Finish         = new Commands.BoolCommand(finish);
 }