/// <summary>
 /// Handles the event indicating the all conversion process has finished.
 /// </summary>
 /// <param name="sender">The instance where the event handler is attached.</param>
 /// <param name="e">The event data.</param>
 private void OnConvertAllFinished(object sender, ThConverterEventArgs e)
 {
     this.Log   += Resources.msgEndConversion + Environment.NewLine;
     this.IsIdle = true;
 }
 /// <summary>
 /// Handles the event indicating the conversion process per file has finished.
 /// </summary>
 /// <param name="sender">The instance where the event handler is attached.</param>
 /// <param name="e">The event data.</param>
 private void OnConvertFinished(object sender, ThConverterEventArgs e)
 {
     this.Log += e.Message + Environment.NewLine;
 }