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.

link|improve this question
if you are drawing the object inside the Paint event that object will be shown as long as you keep doing it in there. Can you have a variable, flag set somewhere which prevents/allows the painting of that object inside the Paint Event? can you show your Paint event? – Davide Piras Sep 8 '11 at 6:13
I'm only drawing it once, which works. I want to find out how to remove it – apophis Sep 8 '11 at 6:16
what Davide was saying is that as soon as your paint-event is called again (for example when you Invalidate the panel) and you don't redraw your object in there then it will not be shown and is deleted - please show us your Paint-Handler and just try Panel.Invalidate(true); – Carsten König Sep 8 '11 at 6:50
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.