在 Windows Mobile 智能手机/标准版上使用“后退”按钮关闭表单

发布于 2024-07-19 03:16:14 字数 210 浏览 7 评论 0原文

在 Windows Mobile PocketPC/Pro 中,您可以通过设置 MinimizeBox = 'false' 来指定使用最小化按钮来关闭表单(触发 Closing 事件等)。 在智能手机上,后退按钮的使用方式与 PocketPC 窗体角上的 X 相同,但我似乎找不到明显(或不太明显)的功能来允许我将其行为更改为“关闭” ,而不是“最小化”。

关于如何去做的任何线索?

In Windows Mobile PocketPC/Pro, you can specify that the Minimize button be used to Close the form instead (triggering the Closing event, etc.) by setting MinimizeBox = 'false'. On a Smartphone, the Back button is used in the same way as the X in the PocketPC form's corner, but I can't seem to find an obvious (or less obvious) feature to allow me to change its behavior to be "Close", not "Minimize".

Any clues on how to go about that?

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

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

发布评论

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

评论(1

俏︾媚 2024-07-26 03:16:14

这是一篇关于捕获“后退”按钮的文章。 SDK 中还有一个示例

但在我看来,您不应该覆盖它的功能。 您可以遵循的另一种方法是在表单的 OnDeactivate 处理程序上启动计时器。 假设您的主窗体没有被应用程序中的另一个窗体隐藏,那么当您的应用程序进入后台时,将调用此函数。 如果您有多个表单,则需要做更多工作来捕获进入后台的事件。 如果用户没有在合理的时间内将您的应用程序置于前台,则将其关闭。

This is an article on capturing the Back button. There is also a sample in the SDK.

In my opinion however, you shouldn't override its functionality. Another approach you could follow is to start a timer on the OnDeactivate handler of your form. Assuming that your main form isn't hidden by another form in your application, this will be called when your application goes in background. If you have more than one form, more work is needed to capture the event of going in the background. If the user, doesn't bring your application at the foreground in a reasonable amount of time, then close it.

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