I have drawn an object onto a panel using its Paint event. The object has a Draw method, which is called in this event, called by object.Draw(e.Graphics). The graphics are disposed of in this procedure. What I need to do now is find out how to remove this object from the panel on an event. How can I do this? Thanks.
EDIT: The object is successfully drawn to screen, that's not a problem.
Panel.Invalidate(true);– Carsten König Sep 8 '11 at 6:50