Single click and double click on the same Image co

2019-05-06 18:49发布

问题:

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:

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.



回答2:

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
           }


标签: wpf click double