public void StopExport() { Dispatcher.OnResponseThreadAsync(() => { IsExportStarted = false; ExportStopped.SafeInvoke(); }); }
private void ExportStoppedHandler() { AddGuiAction(() => ExportStopped.SafeInvoke()); }
/// <summary> /// Вызвать событие <see cref="ExportStopped"/>. /// </summary> protected void RaiseExportStopped() { ExportState = ConnectionStates.Disconnected; ExportStopped.SafeInvoke(); }