Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
250
double click on tree node calls _dsTree_MouseClick before calling dsTree_MouseDoubleClick
posted

I have the following two tree events:
1) _dsTree_MouseClick
2) _dsTree_MouseDoubleClick

Step: I double click on a ultra tree node.

Expected result: Only '_dsTree_MouseDoubleClick' is called.

Actual result:
First '_dsTree_MouseClick' is called and then '_dsTree_MouseDoubleClick' is called.

Problem: How to stop call to '_dsTree_MouseClick' on double click of a tree node?

Basically I want to know in my code when user performed single click and when user performed double click. When _dsTree_MouseDoubleClick'  is called on double click I missunderstand and assume it was a single click on the tree node.

  • 469350
    Offline posted

    Hi,

    The Click event will always fire before the DoubleClick event. This is the way it works for every control. It has to work that way, because there is no way for Windows to know that you are going to click a second time.