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