解决方法:
Thread thread = new Thread(() =>
{
Control.CheckForIllegalCrossThreadCalls = false;//添加此行代码
});
thread.Start();
解决方法:
Thread thread = new Thread(() =>
{
Control.CheckForIllegalCrossThreadCalls = false;//添加此行代码
});
thread.Start();