如何从 C# ion WP7 中的静态方法显示 MessageBox?
我在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用
Application.Current.RootVisual.Dispatcher
访问 UI 调度程序:You can access the UI dispatcher using
Application.Current.RootVisual.Dispatcher
: