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.
我有一个空的 win32 项目。
CASE WM_CHAR:
在这种情况下,我需要将每个击键存储在一个数组中,然后使用
TextOut();
我想它会是这样的:
char store[LARGE_NUMBER];
然后在 wm_char 标头的情况下,我将字符存储在存储中,然后使用计数器沿数组移动每个按下的键。我只是不知道如何记录键盘上的特定键,而不仅仅是任何键 - 这称为 wm_char 案例。
谢谢
该wParam参数保存被按下的键的字符代码。看看文档。lParam保存有关按键的更多信息(是否是特殊键,是否按下键等)。
wParam
lParam