System.InvalidOperationException:“调用线程无法访问此对象,因为另一个线程拥有该对象。”
wpf控件MouseEnter绑定了事件,用Timer设置一段时间后执行时报异常
解决方法:
this.Dispatcher.Invoke((Action)delegate () { //实现 });
或
App.Current.Dispatcher.Invoke((Action)delegate() { //实现 });
wpf控件MouseEnter绑定了事件,用Timer设置一段时间后执行时报异常
解决方法:
this.Dispatcher.Invoke((Action)delegate () { //实现 });
或
App.Current.Dispatcher.Invoke((Action)delegate() { //实现 });