winform跨线程

在winform中经常用到多线程,那么用多线程对控件进行赋值和修改的时候呢会出现类似“该控件不是当前线程创建”的错误信息,在winform中两种办法:

1.在加载事件中写这句话,其作用呢就是线程的异步调用

 1 System.Windows.Forms.Control.CheckForIllegalCrossThreadCalls = false; 

2.用委托来实现线程对控件的赋值操作

1 public delegate void OutDelegate(string text);
2 public void OutText(string text)
3 {
4 txt.AppendText(text);
5 txt.AppendText( "\t\n" );
6 }
7 OutDelegate outdelegate = new OutDelegate( OutText );
8 this.BeginInvoke(outdelegate, new object[]{text});

 

 

补充一句:

在winform中创建带参数的线程,可以这么写

1 Thread thread = new Thread(new ParameterizedThreadStart(getweathering));
2 
3 thread.Start(comboBox4.Text);
4 
5  
6 
7 void getweathering(string temptext)
8 
9 {}

 

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。