ChartPanel.MouseLeftButtonDown += MouseClicked; protected void MouseClicked(...)
I would like to know when a click is due to a drawing tool being drawn, so that the indicator will not be drawing in this case.
How to tell the difference between a normal click and a click when a drawing tool is selected?
I thought IsInHitTest was supposed to do the trick but it doesn't.
Thank you

Comment