无法在 WP7 上使用调度程序

发布于 2024-10-04 03:47:28 字数 203 浏览 1 评论 0原文

我正在寻找使用调度程序在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

梦年海沫深 2024-10-11 03:47:28

尝试使用:

Deployment.Current.Dispatcher.BeginInvoke(() => {OnSendSuccessful(); });  

这使用静态方法来获取在静态上下文中使用的调度程序。

Try using:

Deployment.Current.Dispatcher.BeginInvoke(() => {OnSendSuccessful(); });  

This uses a static method to get a dispatcher for use in a static context.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文