如何在 vb.net 紧凑型 Windows Mobile 6.5 应用程序(全屏)中调出开始菜单

发布于 2024-11-16 11:16:42 字数 194 浏览 3 评论 0原文

我的应用程序是用 vb.net 紧凑构建的。这些年来,在所有版本中,当用户点击屏幕顶部或底部(取决于任务栏所在的位置)时,它都会弹出任务栏和开始菜单。但现在最新的操作系统版本不再这样做了。我正在考虑在我的应用程序中添加一个按钮来调出任务栏,但不知道如何操作。

然而,在 IE 全屏中,有一个圆形按钮可以调出任务栏。如果我能在我的应用程序中完成它,那就太好了。

My app is built in vb.net compact. All these years in all versions when user taps at the top or bottom of the screen (depending on where the task bar is located) it brings up the task bar and start menu fine. But now the latest OS build doesn't do it anymore. I'm thinking of having a button in my app to bring up the task bar but not sure how to do it.

However, in IE full screen there is a circular button that brings up the task bar. If I can accomplish it in my app that would be good.

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

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

发布评论

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

评论(1

被翻牌 2024-11-23 11:16:42

您可以使用远程间谍工具来查找你的任务栏的名称,那么你可以尝试调用 FindWindow 函数使用此名称来获取句柄,最后调用 ShowWindow 函数让它显示。 (在 FindWindowShowWindow 使用 coredll.dll 而不是user32.dll)。

You can use the Remote Spy tool to find out the name of your task-bar, then you can try calling FindWindow function using this name to get the handle, and finally calling ShowWindow function to get it to show. (In P/Invoke versions for FindWindow and ShowWindow use coredll.dll instead of user32.dll).

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