如何从 C# ion WP7 中的静态方法显示 MessageBox?

发布于 2024-11-04 23:37:18 字数 210 浏览 0 评论 0原文

我在 Windows Phone 上有一个异步调用的页面,我想从中显示一个 MessageBox。我通常会:

this.Dispatcher.BeginInvoke(() => MessageBox.Show("The message"));

但这在静态方法中不太有效。

如何通过静态方法显示 MessageBox?

I have a Page on Windows Phone that is called asynchronously, from which I want to show a MessageBox. I would normally:

this.Dispatcher.BeginInvoke(() => MessageBox.Show("The message"));

but this doesn't quite work in a static method.

How do I get the MessageBox to display from a static method?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

七秒鱼° 2024-11-11 23:37:18

您可以使用 Application.Current.RootVisual.Dispatcher 访问 UI 调度程序:

Dispatcher dispatcher = Application.Current.RootVisual.Dispatcher;
dispatcher.BeginInvoke(() => MessageBox.Show("The message"));

You can access the UI dispatcher using Application.Current.RootVisual.Dispatcher:

Dispatcher dispatcher = Application.Current.RootVisual.Dispatcher;
dispatcher.BeginInvoke(() => MessageBox.Show("The message"));
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文