Пример #1
0
 /// <summary>
 /// Handles the ExportErrorEvent event of the exporter control.
 /// </summary>
 /// <param name="sender">The source of the event.</param>
 /// <param name="e">The <see cref="Microsoft.VisualStudio.Modeling.Shell.ExportErrorEventArgs"/> instance containing the event data.</param>
 void exporter_ExportErrorEvent(object sender, ExportErrorEventArgs e)
 {
 }
 private void FileHandeling_OnExportError(object source, ExportErrorEventArgs e)
 {
     OnExportError?.Invoke(source, e);
 }
 private void ExportFinExe_OnExportError(object source, ExportErrorEventArgs e)
 {
     IsWorking = false;
     _dialogService.ShowErrorMessage("Objects from C/SIDE Export Error", e.Exception.Message);
 }