Exemple #1
0
 void commander_IsBusy(object sender, IsBusyEventArgs e)
 {
     if (this.m_webExternalHost_old.ChannelInUse ||
         this.m_webExternalHost_new.ChannelInUse == true)
     {
         e.IsBusy = true;
     }
 }
Exemple #2
0
 void commander_IsBusy(object sender, IsBusyEventArgs e)
 {
     e.IsBusy = this.m_webExternalHost.ChannelInUse;
 }
Exemple #3
0
 private void IsBusyChanged(object sender, IsBusyEventArgs e)
 {
     IsBusy = e.IsBusy;
     NotifyOfPropertyChanged(() => IsConnected);
 }
 private void TableControlOnIsBusy(object sender, IsBusyEventArgs e)
 {
     SetButtonState(!e.IsBusy);
 }