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