Is there a wizard control in WPF? [closed]
WPF has a navigation infrastructure built in: WPF Navigation Overview Also check out the wizard sample
WPF has a navigation infrastructure built in: WPF Navigation Overview Also check out the wizard sample
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
I don’t believe there is a best/correct way, but the way I’d do it is… Each wizard gets its own page. Each step gets its own div. All steps are in the same form. The previous/next buttons would essentially hide/show the div in each step of the process. The last step’s submit button submits the … Read more