Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在为 Windows CE 开发一个虚拟键盘,我无法使用括号或双引号(可能还有其他我没有测试过的字符)发出输入事件。
我正在使用括号键码 0x28 和 0x29,但它根本不起作用。当我想发送说'A'时,我只需要发送移位,然后发送0x41('A'),然后再次移位,但无论我是否使用移位,括号都不起作用。
keybd_event(0x28, 0, 0, 0);
我没有在 WindowsCE 上发送 key up 事件。
任何帮助将非常感激 !
感谢 Hans Passant 的回答:
shift -> 0x39 -> shift for '(' shift -> 0x30 -> shift for ')'
带移位 0x10