Wpf 多線程修改UI示例:

1.Wpf 多線程修改UI示例: //啓動線程修改UI,拋出異常 ThreadPool.QueueUserWorkItem((q) => { button.Content = "張三"; }, null); 解決方案:使用Dispatcher.BeginInvoke+委託方式,修改UI 將修改UI的代碼封裝在委託中 //啓動線程處理 Thread thread1 = new Thread(
相關文章
相關標籤/搜索