Persistent graphics on form or picturebox
How can I draw something - once - so it will stay?
I tried using the System.Drawing and CreateGraphics... stuff on the form, looks good, but as soon as anything obscures the form (minimize, taskbar popup, msgbox etc) the drawn graphics dissappear.
I tried drawing to a picturebox rather than the form and it does the same thing. This seems pretty useless!
I realize I can redraw the entire graphic in the Paint event, but that seems just too wierd, the entire program will end up in the Paint event because the graphic is being drawn dynamically based on various conditions.
There has to be a better way.
Thanks, DaveBo