At the moment I am drawing rectangles using Windows Forms.
g.DrawRectangle(new Pen(Color.Black),new Rectangle(new Point(10,10),new Size(50,50)));
But I would like to add Event Listener to this so that I can make them moveable and resizeable.
Can I do this using Windows Form DrawRectangle() or is there a different way?