虚拟键盘
我开发了一个应用程序,可以在运行 Windows Mobile 的特定手机上运行。该应用程序配置为使用手机物理键盘作为界面以全屏运行。
此时,客户希望应用程序在没有物理键盘的手机上运行。这意味着我的应用程序将必须使用操作系统中的虚拟键盘。
如何“调用”此键盘,以便在需要时它出现在我的应用程序顶部?
I have an application developed to run on a particular cellphone running windows mobile. The application is configured to run in full screen using the phone physical keyboard as an interface.
At this point the client wants the application to run on cellphones that don't have a physical keyboard. This means that my application will have to use the virtual keyboard from the OS.
How can I "invoke" this keyboard so it appears on top of my application when required?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
WinMo 中的虚拟键盘称为 SIP(软输入面板)。显示它的最简单方法是在表单上放置一个
InputPanel
控件,并将其Enabled
属性设置为true
。这个早期的答案有一个更好的方法(恕我直言)使用 PInvoke 来做到这一点:
在 Windows Mobile 中输入数字的最佳方式是什么? (.NET CF 3.5)
请注意,忘恩负义的#%$$@%# 没有选择它(或任何其他答案)。 :)
The virtual keyboard in WinMo is called the SIP (Soft Input Panel). The easiest way to show it is to place an
InputPanel
control on your form, and set itsEnabled
property totrue
.This earlier answer has a better way (IMHO) of doing it using PInvoke:
What's the best way to enter numbers in Windows Mobile? (.NET CF 3.5)
Note that the ungrateful #%$$@%# didn't select it (or any other answer). :)