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.
我有一个设备,它有一个类似枪的握把和一个扳机。当我按下这个触发器时,我想启动一些功能。当我扣动扳机时,它会在 KeyDown 事件中返回H,RControlKey 。
问题是,当按下触发键(H,ControlKey)时,我该如何执行功能?
也许是这样的:
if (e.KeyCode == Keys.RControlKey) { //your code }
这也适用于 A、B 或 shift 等其他键。