protected virtual void OnStartedUnzip(StartUnzipEventArgs e)
 {
     if (StartedUnzip != null)
     {
         StartedUnzip(this, e);
     }
 }
 private void Patcher_StartedUnzip(object sender, StartUnzipEventArgs e)
 {
     TxtLogAppendText(String.Format("Decompressing Archive: {0}\r\n", e.Filename));
 }