I have been beating my head against the wall in an attempt to figure out how to create a wizard-like application in C# using Visual Studio 2008 and .Net 3.5 framework.
I have found other people asking for a solution to this same issue in older StackOverflow and forum posts, but the solutions provided are either pay-for solutions or are so far outdated I can't see a simple enough upgrade path to get it working 3.5.
I am looking for suggestions that meet the following criteria:
- It must be free and redistributable
- It m开发者_开发百科ust work with Visual Studio 2008
- It must employ .Net 3.5
- It must work with Winforms
I look forward to any answers this question receives.
Thanks!
As suggested by Hans Passant and Jan de Vaan, there are already known ways of doing this. I ended up rolling my own solution and using the TabControl as suggested in Creating Wizards for Windows Forms in C# and all is working well.
Have you looked into the Microsoft MSDN?
http://msdn.microsoft.com/en-us/library/7k3w6w59%28v=VS.90%29.aspx#Y1368
The above link is an example walkthrough from the MSDN on how to create a wizard using built-in features.
I hope that helps.
精彩评论