I would like to reset a panel to its initial state. For e.g., I set an image as background, I drew graphics on a part of the panel. I have to clear everything. How?
You have to clear the panel first
panel1.Controls.Clear();
then call the initial form.
panel1.Controls.Add(orig_form);