예제 #1
0
 public void NotifyInitialStates()
 {
     events
     .OnCanExecute(false)
     .OnIsRunning(false)
     .OnHasErrors(true, reason);
 }
예제 #2
0
 public void NotifyInitialStates()
 {
     events
     .OnCanExecute(planExecutionHelper.CanExecute(backupPlan))
     .OnHasErrors(false)
     .OnIsRunning(false)
     .OnStatusText("Not run yet");
 }