在后台线程WP7上创建BitmapImage
在后台(线程池)线程上运行以下代码时,我收到 UnauthorizedAccessException(“无效的跨线程访问”),这是预期的行为吗?
var uri = new Uri("resourcevault/images/defaultSearch.png", UriKind.Relative);
var info = Application.GetResourceStream(uri);
// this line throws exception....
this.defaultSearchImage = new BitmapImage();
I'm receiving an UnauthorizedAccessException ("Invalid cross-thread access.") when running the following code on a background (threadpool) thread, is this expected behaviour?
var uri = new Uri("resourcevault/images/defaultSearch.png", UriKind.Relative);
var info = Application.GetResourceStream(uri);
// this line throws exception....
this.defaultSearchImage = new BitmapImage();
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
原因是因为你的后台线程不能直接用于更新UI。相反,您需要使用
Dispatcher
将数据编组到 UI 线程。像这样的东西:The reason is because your background thread cannot directly be used to update the UI. Instead, you need to use a
Dispatcher
to marshal the data on to the UI thread. Something like this: