您可以使用
Dispatcher.Invoke(Delegate, object[])
在
Application(或任何
UIElement)调度程序上。
您可以像这样使用它:
Application.Current.Dispatcher.Invoke(new Action(() => { }));
要么
someControl.Dispatcher.Invoke(new Action(() => { }));
欢迎分享,转载请注明来源:内存溢出
您可以使用
Dispatcher.Invoke(Delegate, object[])
在
Application(或任何
UIElement)调度程序上。
您可以像这样使用它:
Application.Current.Dispatcher.Invoke(new Action(() => { }));
要么
someControl.Dispatcher.Invoke(new Action(() => { }));
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)