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.
asked Dec 6, 2011 at 5:40
Ryan Peschel
12k22 gold badges90 silver badges171 bronze badges
-
1This link might help you. codeproject.com/KB/audio-video/ReprogramYourMouse.aspxJude Cooray– Jude Cooray2011年12月06日 05:43:58 +00:00Commented Dec 6, 2011 at 5:43
1 Answer 1
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.
Sign up to request clarification or add additional context in comments.
1 Comment
Ryan Peschel
Ah. Good call. I'll just use KeyDown events instead.
Explore related questions
See similar questions with these tags.
lang-cs