I just want to draw an ellipse dynamically when running . mouseclick then mousemove and then mouse release that’s it . But, confused of detecting point(x,y).Can someone help me out of this
I just want to draw an ellipse dynamically when running . mouseclick then mousemove
Share
You basically just need to record the starting point from the MouseDown event, so that you can make the ellipse with the point recorded from the MouseUp event.
Simple demo: