示例#1
0
 void Spider_Finish(int count)
 {
     spider.Abort();
     if (btnSearch.InvokeRequired)
     {
         Action <int> actionDelegate = (x) => {
             this.btnSearch.Enabled = true;
             this.pgSearch.Visible  = false;
         };
         this.btnSearch.Invoke(actionDelegate, count);
     }
     else
     {
         this.btnSearch.Enabled = true;
         this.pgSearch.Visible  = false;
     }
 }
示例#2
0
 private void btnAbort_Click(object sender, EventArgs e)
 {
     siteSpider.Abort();
 }