Is this a stupid question? I am trying to navigate the mystical world of C# Visual Studio. I want to be able to replace a panel at some point in run time, but the designer view only has a static view of a single state of the form.
For instance there could be panel1 on the form, with button1 and picturebox1. Then, if the users presses button1, panel1 will be replaced with panel2. Panel2 has button2 and picturebox2.
I know how to make panel1 on the designer just fine. Isn't there some way I can use the designer to make panel2? Can you only use the designer to make one state of the form and then you have to do any other state by hand?