예제 #1
0
 void task_Progress(object sender, AsyncTaskProgressEventArgs e)
 {
     if (TaskProgress != null)
     {
         TaskProgress(this, new AsyncTaskEventArgs <AsyncTaskProgressEventArgs>((AsyncTask)sender, e));
     }
 }
예제 #2
0
 protected virtual void OnProgress(AsyncTaskProgressEventArgs e)
 {
     if (Progress != null)
     {
         Progress(this, e);
     }
 }
예제 #3
0
파일: AsyncTask.cs 프로젝트: fiftin/oblqo
 protected virtual void OnProgress(AsyncTaskProgressEventArgs e)
 {
     if (Progress != null)
         Progress(this, e);
 }