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.
我正在使用 GetASyncKeyState (C++) 来检查密钥。我不知道这个键的名称是什么:
这个键是怎么命名的?什么是 VK_ 或 Scancode?
VK_LMENU : Left menu key (0xA4) VK_RMENU : Right menu key (0xA5)
Source有许多我什至不知道存在的有趣键,例如“右 Windows 键”oO
显然,此密钥由VK_APPS
VK_APPS
VK_APPS 是一个扩展密钥,它的扫描码是 D5E0(在某些系统上是 D5E1)。更多关于 Windows 键映射的信息。