摘要: 和 windows phone 不同,从异步线程返回到 UI 线程只需要调用 Dispatcher.BeginInvoke(delegate{...}); 方法, Windows 8中微软更多的希望使用新关键字 async 和 await:// May be invoked on a background thread, so use the Dispatcher to invoke the UI-related code on the UI thread. await this.Dispatcher.RunAsync(CoreDispatcherPriority.... 阅读全文
posted @ 2012-09-04 15:48 博琼 阅读(312) 评论(0) 推荐(0)