Mousebuttons

You can query the mouse button that was pressed in the mousdown/mouseup event - using the mouseventargs parameter
e.g.

Visual Basic:
if e.Button = MouseButtons.Left then .....

Cheers
 
Back
Top