views:

27

answers:

1

I am trying to have different behaviours when single clicking and double clicking the wpf Image control. Unfortunately the single click is fired first, so the double click is ignored.

+1  A: 

If you use the MouseDown event instead it has a property in the EventArgs for ClickCount. This allows you to know how many times the user has clicked on the control within the system's double click time span.

You can probably use this to implement your own logic for deciding between a double and single click.

Martin Harris