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.
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.
You can check double clicks using ClickCount property in the event args.
if(e.ClickCount == 2)
{
// Do something here
}
PS: If you are using MouseDown or MouseClick event make sure you are checking for left button double clicks.You can do this like :
if (e.ChangedButton == MouseButton.Left && e.ClickCount == 2)
{
// Do Something here
}
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With