如何在 vb.net 紧凑型 Windows Mobile 6.5 应用程序(全屏)中调出开始菜单
我的应用程序是用 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 技术交流群。

绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用远程间谍工具来查找你的任务栏的名称,那么你可以尝试调用 FindWindow 函数使用此名称来获取句柄,最后调用 ShowWindow 函数让它显示。 (在 FindWindow 和 ShowWindow 使用
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 ofuser32.dll
).