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

线程间操作无效

时间:2014-07-01 23:20:34      阅读:246      评论:0      收藏:0      [点我收藏+]

标签:blog   http   width   os   for   new   

          第一种方法:  //线程开始的时候加这么一句(把错误隐藏掉)

            Control.CheckForIllegalCrossThreadCalls = false;

 

第二种方法:(建议采用)

bubuko.com,布布扣//建立个委托
        private delegate void ShowDelegate(string strshow);
bubuko.com,布布扣

 

        public void Show(string strshow)

        {

 

            if (this.txtreceive.InvokeRequired)

            {

             //   this.txtreceive.BeginInvoke(new ShowDelegate(Show), strshow);//这个也可以

                this.txtreceive.Invoke(new ShowDelegate(Show), strshow);

            }

            else

            {

                    this.txtreceive.Text += strshow;

 

            }

        }

线程间操作无效,布布扣,bubuko.com

线程间操作无效

标签:blog   http   width   os   for   new   

原文地址:http://www.cnblogs.com/mingjian/p/3816423.html

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