Example #1
0
 void RaiseDeployCommandCanExecuteChanged()
 {
     if (Application.Current != null)
     {
         if (Application.Current.Dispatcher != null)
         {
             Application.Current.Dispatcher.Invoke(() =>
             {
                 DeployCommand.RaiseCanExecuteChanged();
             });
         }
     }
 }