tags:

views:

36

answers:

1

Hi,

How can I get information about additional mouse buttons in xna. For instance, I know I can use MouseState to check if the regular three buttons are pressed but how can I take advantage of something like the G5 or Naga mouse which have more than just three buttons?

Thanks,

A: 

Xna does not support the use of the extra mouse buttons natively. Even the underlying Win32 API only supports up to two extra buttons. Any other buttons are supported at the driver level

BeRecursive