I want to implement a wizard using winforms and VS 2010.
I’ve got this tutorial, but as I’m new to Visual Studio and C# I don’t really understand it.
Could someone help me out?
My main problem is that I don’t know where to put the listings in this tutorial?
Should I put all the code in one class? Or in one form.cs? How is it divided?
greetz
Bl!tz
It looks as if you will need to create a UserControl (right-click your project, New… User Control) for each page of the Wizard, and you will need to implement IWizardPage on your UserControl. Than you have your WizardHost which is a single Form.
So to answer your question you will have one Form and a UserControl for each page of the Wizard.