Creating Wizards for Windows Forms in C#

Lots of ways to do it. Creating a form for each wizard step is possible, but very awkward. And ugly, lots of flickering when the user changes the step. Making each step a UserControl can work, you simply switch them in and out of the form’s Controls collection. Or make one of them Visible = … Read more