// bwFetch
//
this.bwFetch.WorkerReportsProgress = true;
this.bwFetch.WorkerSupportsCancellation = true;
this.bwFetch.DoWork += new (this.bwFetch_DoWork);
this.bwFetch.RunWorkerCompleted += new (this.bwFetch_RunWorkerCompleted);
//
程序执行到 “bwFetch.RunWorkerAsync();开始在后台执行操作”,请问在后台哪里执行啊?怎么才能找到它?
//
this.bwFetch.WorkerReportsProgress = true;
this.bwFetch.WorkerSupportsCancellation = true;
this.bwFetch.DoWork += new (this.bwFetch_DoWork);
this.bwFetch.RunWorkerCompleted += new (this.bwFetch_RunWorkerCompleted);
//
程序执行到 “bwFetch.RunWorkerAsync();开始在后台执行操作”,请问在后台哪里执行啊?怎么才能找到它?