Example #1
0
 protected PopupWindowVm()
 {
     AnnulerCommand = new RelayCommand(Close);
     ValiderCommand = new RelayCommandAsync(ExecuteValiderAsync);
 }
Example #2
0
 protected void SetValiderCommandCanExecute(Func <bool> canExecute)
 {
     ValiderCommand = new RelayCommandAsync(ExecuteValiderAsync, canExecute);
 }