使用线程操作刷新Winform界面
Posted Step-City
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用线程操作刷新Winform界面相关的知识,希望对你有一定的参考价值。
主窗体中添加代码
public FrmMain() { InitializeComponent(); System.Threading.Thread thread = new System.Threading.Thread(Do_work); thread.IsBackground = true; thread.Start(); } private void Do_work() { while (true) { //将sleep和无限循环放在等待异步的外面 System.Threading.Thread.Sleep(5000); System.Windows.Forms.Application.DoEvents(); ThreadFuntion(); } } private void ThreadFuntion() { if (this.label_State.InvokeRequired) { //1 通常方法:将代理绑定到方法 FlushClient fc = new FlushClient(ThreadFuntion); this.BeginInvoke(fc);//通过代理调用刷新方法 } else { label_State.Text = "程序已经运行5秒钟了"; } }
以上是关于使用线程操作刷新Winform界面的主要内容,如果未能解决你的问题,请参考以下文章