Ejemplo n.º 1
0
 /// <summary>
 /// Handles the DeletedFile event of the jobWorker control.
 /// </summary>
 /// <param name="sender">The source of the event.</param>
 /// <param name="e">The <see cref="FlagSync.Core.FileDeletionEventArgs"/> instance containing the event data.</param>
 private void jobWorker_DeletedFile(object sender, FileDeletionEventArgs e)
 {
     this.LastLogMessage.Progress = 100;
 }
Ejemplo n.º 2
0
 /// <summary>
 /// Handles the DeletingFile event of the jobWorker control.
 /// </summary>
 /// <param name="sender">The source of the event.</param>
 /// <param name="e">The <see cref="FlagSync.Core.FileDeletionEventArgs"/> instance containing the event data.</param>
 private void jobWorker_DeletingFile(object sender, FileDeletionEventArgs e)
 {
     this.AddLogMessage(Resources.DeletingString, Resources.FileString, e.FilePath, String.Empty, false, e.FileSize);
 }