码迷,mamicode.com
首页 > 其他好文 > 详细

更新UI

时间:2017-01-15 20:36:20      阅读:134      评论:0      收藏:0      [点我收藏+]

标签:event   pre   his   reads   delegate   ext   app   handler   div   

            //1.
            this.Invoke(new ThreadStart(delegate
            {
                textBox1.AppendText("11111" + "\r\n");
            }));
            //2.
            this.Invoke(new MethodInvoker(delegate
            {
                textBox1.AppendText("11111" + "\r\n");
            }));
            //3.
            this.Invoke(new Action(
            () => { textBox1.AppendText("11111" + "\r\n"); }));
            //4.
            this.Invoke(new EventHandler(delegate
            {
                 textBox1.AppendText("11111" + "\r\n");
            }));

 

更新UI

标签:event   pre   his   reads   delegate   ext   app   handler   div   

原文地址:http://www.cnblogs.com/wangyinlon/p/6287605.html

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