有两种方法可以处理这个问题,一种是正确的方法,另一种是:
1:如果您想要一个好的工作解决方案,那么这应该可以解决问题,..
private void SetText(string text)
{
// InvokeRequired required compares the thread ID of the
// calling thread to the thread ID of the creating thread.
// If these threads are different, it returns true.
if (this.textBox1.InvokeRequired)
{
SetTextCallback d = new SetTextCallback(SetText);
this.Invoke(d, new object[] { text });
}
else
{
this.textBox1.Text = text;
}
}
msdn.microsoft.com/en-us/library/ms171728.aspx
2:但是如果你想要一个快速的解决方案而不保证它会正常工作,只需设置这个变量:
Control.CheckForIllegalCrossThreadCalls = False