码迷,mamicode.com
首页 > 编程语言 > 详细

C#中跨线程的调用的方法--this.invoke

时间:2014-05-09 19:00:19      阅读:560      评论:0      收藏:0      [点我收藏+]

标签:style   blog   class   code   java   tar   

bubuko.com,布布扣
  private void button1_Click(object sender, EventArgs e)
        {
            Thread thread = new Thread(new ThreadStart(display));
            thread.Start();
        }
 
        private void display()
        {
            while (true)
            {
                 Thread.Sleep(100);
                 this.Invoke(new threadcall(SetText2));
            }
         }
 
        int count = 0;
 
        public delegate void threadcall();
 
        //threadcall Set = ;
 
        private void SetText2()
        {
            count++;
            this.label1.Text = count.ToString();
        }
 
        private void Form1_FormClosing(object sender, FormClosingEventArgs e)
        {
            this.Dispose();
            //thread.Abort();
        }
    }
} 
bubuko.com,布布扣

 

C#中跨线程的调用的方法--this.invoke,布布扣,bubuko.com

C#中跨线程的调用的方法--this.invoke

标签:style   blog   class   code   java   tar   

原文地址:http://www.cnblogs.com/axiaostudio/p/3708322.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!