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.
我正在制作一个鼓应用程序,当我尝试同时按下两个键(例如低音鼓和镲片)时,它不起作用。顺便说一句,我对鼓件使用窗口形式和按键。
我怎么能在 C# 中这样做?
由于 KeyEventArgs 仅向您的代码提供 Keys-Enumeration 类型的值,因此无法通过此值获取多个键。Keys-Enumeration 不适用于从enum中取出键所需的按位操作。要获取多个密钥,您必须通过 WinApi 查找,如其他线程中所述并在评论中链接。