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