如何在 C# 中检测侧鼠标按钮?
我正在尝试为我的 Razer Naga 编写一个 C# 程序,但是我无法检测侧面鼠标按钮。在 MouseDown 事件处理程序中,它捕获 M1、M2、MMB,但没有捕获左侧靠近拇指的 12 个事件。
有什么方法可以检测到这些拇指按钮被按下吗?
谢谢。
I am trying to write a C# program for my Razer Naga but I am having trouble detecting side mouse-buttons. In the MouseDown event handler it catches M1, M2, MMB, but none of the 12 on the left hand-side near the thumb.
Is there any way to detect these thumb-buttons being pressed?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Naga 上的侧面按钮仅映射到数字键,以及减号和加号等。因此,您很可能需要某种按键或其他正确的按键相关事件。
The side buttons on the Naga are just mapped to the number keys, as well as minus and plus, etc. So most likely you want some sort of keydown or other proper key related event.