SetErrorState() private méthode

private SetErrorState ( ) : void
Résultat void
Exemple #1
0
 public void SetCompleted(bool successful)
 {
     if (successful)
     {
         Close();
     }
     else if (_currentWindow != null)
     {
         _currentWindow.SetErrorState();
     }
 }
 public void SetCompleted(bool successful, bool showUpgradeNuGetButton)
 {
     if (successful)
     {
         Close();
     }
     else if (_currentWindow != null)
     {
         _currentWindow.SetErrorState(showUpgradeNuGetButton);
     }
 }