无法在 WP7 上使用调度程序
我正在寻找使用调度程序在 UI 线程上调用代码的参考,他们说要这样做:
Dispatcher.BeginInvoke(() => {OnSendSuccessful(); });
但我收到编译器错误,说我无法在静态上下文中访问非静态方法 BeginInvoke。有什么想法吗?我尝试新任命一名调度员,但这根本没有意义。
I was looking around for refrences using dispatcher to call code on the UI thread and they say to do this:
Dispatcher.BeginInvoke(() => {OnSendSuccessful(); });
But I get a compiler error saying I cant access non-static method BeginInvoke in a static context. Any ideas? I tried to new up a dispatcher but that doesn't even make sense.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试使用:
这使用静态方法来获取在静态上下文中使用的调度程序。
Try using:
This uses a static method to get a dispatcher for use in a static context.