bought a mouse from china and when i tried i realized thumb buttons are swapped was wondering with C# is it possible to switch these buttons
i was trying something like:
switch(MouseButtons)
{
case MouseButtons.XButton1:
MouseButtons.XButton2;
break;
case MouseButtons.XButton2:
MouseButtons.XButton1;
break;
}
or maybe something with:
MouseButtonState.Mouse.XButton1 == MouseButtonState.Pressed
and BTW im a 6monhts newbie with c#
maybe use window hooks? i read about it but i dont know how to apply it.