Example #1
0
 private void RaiseUpdateProgerss(UpdateProgressStatus status, string message)
 {
     if (UpdateProgress != null)
     {
         UpdateProgress(this, new UpdateProgressEventArgs(status, message));
     }
 }
Example #2
0
 public UpdateProgressEventArgs(UpdateProgressStatus status)
 {
     this.Status = status;
 }
 public UpdateProgressEventArgs(UpdateProgressStatus status, string message)
     : this(message)
 {
     Status = status;
 }
 private void RaiseUpdateProgerss(UpdateProgressStatus status, string message)
 {
     if (UpdateProgress != null)
     {
         UpdateProgress(this, new UpdateProgressEventArgs(status, message));
     }
 }
Example #5
0
 public UpdateProgressEventArgs(UpdateProgressStatus status)
 {
     this.Status = status;
 }
Example #6
0
        public void CallDelegate(object o, string Content, decimal iProgress)
        {
            UpdateProgressStatus ups = new UpdateProgressStatus(this.RefreshProgress);

            ups.Invoke(o, Content, iProgress);
        }
Example #7
0
 public UpdateProgressEventArgs(UpdateProgressStatus status, string message) : this(message)
 {
     Status = status;
 }