using System.Threading
方法1:
public Form1()
{
InitializeComponent();
//设置如下:
Control.CheckForIllegalCrossThreadCalls = false;
}
方法2:如果存在多个线程一起操作控件,那么需要使用Invoke等委托函数(待写)。
using System.Threading
方法1:
public Form1()
{
InitializeComponent();
//设置如下:
Control.CheckForIllegalCrossThreadCalls = false;
}
方法2:如果存在多个线程一起操作控件,那么需要使用Invoke等委托函数(待写)。