現在來讓我們看看推薦的解決方案:
public partial class Form1 : Form
{
private delegate void FlushClIEnt();//代理
public Form1()
{
InitializeComponent();
}
private void Form1_Load(object sender, EventArgs e)
{
Thread thread = new Thread(CrossThreadFlush);
thread.IsBackground = true;
thread.Start();
}
private void CrossThreadFlush()
{
while (true)
{
//將sleep和無限循環放在等待異步的外面
Thread.Sleep(1000);
ThreadFunction();
}
}
private void ThreadFunction()
{
if (this.textBox1.InvokeRequired)//等待異步
{
FlushClient fc = new FlushClIEnt(ThreadFunction);
this.Invoke(fc);//通過代理調用刷新方法
}
else
{
this.textBox1.Text = DateTime.Now.ToString();
}
}
}
運行上述代碼,我們可以看到問題已經被解決了,通過等待異步,我們就不會總是持有主線程的控制 ,這樣就可以在不發生跨線程調用異常的情況下完成多線程對winform多線程控件的控制了。