而且,如果我打电话
this.Dispatcher.BeginInvoke(() =>
{
//Do work
});
或者
Deployment.Current.Dispatcher.BeginInvoke(() =>
{
//Do work
});
哪个线程可以工作?
和
Deployment.Current.Dispatcher 和 this.Dispatcher 一样吗?