c# 多线程 新开子线程中暂停,调用主线程控件,如何防止UI阻塞?
1个回答
展开全部
System.Threading.SynchronizationContext.Current.Post方法
2.一定不要在控件的内部事件处理方法里面使用Sleep等线程暂停方法!
像我这样写就不会阻塞了:
private void button1_Click(object sender, EventArgs e){System.Threading.Thread thread = new System.Threading.Thread(() ={while (true){this.Invoke(new Action(() ={label1.Text = (count++).ToString();}));System.Threading.Thread.Sleep(100);}});thread.IsBackground = true;
thread.Start();}你把setmess这个线程方法Invoke到了UI的主线程上了,而这个线程里面有暂停方法,所以呢主线程也会暂停卡住。
而我的方法只是把“label1.Text = (count++).ToString();”Invoke到主线程,而那个新的线程并没有Invoke到主线程,所以在那个线程里面使用暂停就没事了!
2.一定不要在控件的内部事件处理方法里面使用Sleep等线程暂停方法!
像我这样写就不会阻塞了:
private void button1_Click(object sender, EventArgs e){System.Threading.Thread thread = new System.Threading.Thread(() ={while (true){this.Invoke(new Action(() ={label1.Text = (count++).ToString();}));System.Threading.Thread.Sleep(100);}});thread.IsBackground = true;
thread.Start();}你把setmess这个线程方法Invoke到了UI的主线程上了,而这个线程里面有暂停方法,所以呢主线程也会暂停卡住。
而我的方法只是把“label1.Text = (count++).ToString();”Invoke到主线程,而那个新的线程并没有Invoke到主线程,所以在那个线程里面使用暂停就没事了!
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询