Esempio n. 1
0
 /// <summary>
 /// Raises the ImageProcessingCommandProgress event.
 /// </summary>
 /// <param name="command">Executing command.</param>
 /// <param name="e">The <see cref="ImageProcessingProgressEventArgs"/> instance containing the event data.</param>
 void OnImageProcessingCommandProgress(ProcessingCommandBase command, ImageProcessingProgressEventArgs e)
 {
     if (ImageProcessingCommandProgress != null)
     {
         ImageProcessingCommandProgress(command, e);
     }
 }
Esempio n. 2
0
 private void command_Progress(object sender, ImageProcessingProgressEventArgs e)
 {
 }
Esempio n. 3
0
 /// <summary>
 /// Handler of the ProcessingCommandBase.Progress event.
 /// </summary>
 /// <param name="sender">The source of the event.</param>
 /// <param name="e">The <see cref="ImageProcessingProgressEventArgs"/> instance containing the event data.</param>
 void command_Progress(object sender, ImageProcessingProgressEventArgs e)
 {
     OnImageProcessingCommandProgress((ProcessingCommandBase)sender, e);
 }
Esempio n. 4
0
 private void command_Progress(object sender, ImageProcessingProgressEventArgs e)
 {
     throw new NotImplementedException();
 }