I’m not sure if this can be done but I’d like to know if it is possible to completely alter what controls are on the form programmatically, similar to what happens with installers; when you click the next button the form doesn’t hide or close and open the next form, it mearly loads a different set of controls(at least, that’s how it appears).
Is it possible to do this with C# in Visual Studio? Or do you have to use tabs or hidden panels?
I think what you’re looking for is UserControl. A UserControl is like a form in the way you can use it as a container for other controls.
You can find a walkthrough here.
In the case of installers you mentioned or wizards in general you can design a different UserControl for each step and load each of them in a reserved area in the form. The reserved area can be a panel.
for example assume you have a button which calls a method with wizards step number as parameter: