如何在 Windows Mobile 应用程序中显示模式对话框?
我想知道如何在 Windows Mobile 应用程序的其中一个表单中显示模式对话框。 我正在以表单形式获取用户输入,如果验证失败,我想向用户显示一个对话框,告诉他们(只需一个“确定”按钮)。
到目前为止,我在框架中找到的唯一与对话框相关的东西是 DialogResult 类。
我正在使用 Windows Mobile 6 Standard SDK 为 Windows 智能手机进行开发。
非常感谢您的帮助。
I wanted to know how I can display a modal dialog in one of my forms in a windows mobile application. I am getting the user inputs in a form and in case a validation fails, I want to display a dialog to the user telling them so (with just an OK button).
So far, the only thing related to dialogs I found in the framework was the DialogResult class.
I am developing for Windows Smart phone using the Windows Mobile 6 Standard SDK.
Thanks a lot for any help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
.NET Compact Framework 支持 MessageBox.Show< /a>,弹出一条模式消息。 如果您需要做的只是显示一些文本并等待“确定”,那就可以了。
The .NET Compact Framework supports MessageBox.Show, which pops up a modal message. If all you need to do is display some text and wait for an OK, that works fine.