I\'m making an application in C# using windows forms, I want to completely swap out all the content in a windows form and replace it with something else. Is there any conven
This works for me: Adding all the controls like:
form.Controls.AddRange(Pages.ToArray());
Then activating the needed one with
form.Controls[i].BringToFront();