How can I handle left mouse double click events in Windows by suppressing the first click events.For ex: Left mouse single click highlights the image object and double click zooms the image, but for now I want on double click not to highlight the image object?
This happens probably the sequence of events triggered on left mouse double click are WM_LBUTTONDOWN
, WM_LBUTTONUP
, WM_LBUTTONDBLCLK
, and WM_LBUTTONUP
. i.e it triggers the WM_LBUTTONDOWN
, so how do I handle this?