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

使用委托解决"线程间操作无效: 从不是创建控件“textBox1”的线程访问它" 问题

时间:2015-06-05 15:15:37      阅读:171      评论:0      收藏:0      [点我收藏+]

标签:

在winform编程中常遇到此类问题,造成辅助线程无法给控件赋值

 

 1 //定义委托
 2 
 3 private delegate void SetTextCallback(string text);
 4 
 5  
 6 
 7 //在给textBox1.text赋值的地方调用以下方法即可
 8 
 9 private void SetText(string text)
10         {
11             // InvokeRequired需要比较调用线程ID和创建线程ID
12             // 如果它们不相同则返回true
13             if (this.textBox1.InvokeRequired)
14             {
15                 SetTextCallback d = new SetTextCallback(SetText);
16                 this.Invoke(d, new object[] { text });
17             }
18             else
19             {
20                 this.textBox1.Text = text;
21             }
22         }

 

使用委托解决"线程间操作无效: 从不是创建控件“textBox1”的线程访问它" 问题

标签:

原文地址:http://www.cnblogs.com/YijiaLee/p/4554504.html

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