引起这种错误多半是由于在非UI线程刷新界面,解决此问题可以使用Dispatcher
this.Dispatcher.Invoke(new Action(() => { UpdateUI(string infor); }));
时间: 2024-10-12 07:29:25
引起这种错误多半是由于在非UI线程刷新界面,解决此问题可以使用Dispatcher
this.Dispatcher.Invoke(new Action(() => { UpdateUI(string infor); }));