WP7:在应用程序内创建类似非网络 toast 的消息?
好吧,标题可能听起来有点令人困惑,但这就是我想做的: 在我正在开发的应用程序中,我想在用户单击按钮时向用户显示一条消息,然后不久后再次隐藏该消息 - 就像 Android 中的 toast 消息一样。
目前我使用 MessageBox,但用户必须按“确定”按钮才能再次隐藏它这一事实很烦人,所以我希望有办法解决这个问题吗?
Okay so the title might sound a bit confusing, but here's what I want to do:
In the app im developing, I want to display a message to the user when he clicks a button, and then hide the message again shortly hereafter - Just like a toast message in Android.
At the moment I use a MessageBox, but the fact that the user has to press an OK button to hide it again is anoying, so I was hoping there would be a way around this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 Silverlight 工具包 中的
ToastRequestTrigger
,如 模式和样式实践WP7开发者指南来显示非网络toast消息。 Coding4Fun Library 还提供了一个ToastPrompt
类,它执行相同的功能。You can use the
ToastRequestTrigger
from the Silverlight Toolkit as described in the patterns & practices WP7 Developer Guide to display non-network toast messages. The Coding4Fun Library also provides aToastPrompt
class, which performs the ssame function.