Hey,
Just wanted to let you know what a great wizard you have created! I've been using it as a backbone for a project at my work. I have a quick question, and maybe I need to send you the code because I have made a number of modifications. The optional page tip is not working for me. I have changed the sheets initialization to this:
this.Pages.Add(new WelcomePage());
WritableSheet[] pageList = new WritableSheet[9];
pageList[0] = new MiddlePage();
pageList[1] = new MiddlePage1();
...
foreach (object page in pageList)
this.Pages.Add(page);
this.Pages.Add(new CompletePage(pageList));
All my pages are added correctly, I then created a checkbox on my 5th page and added the code you had included. For some reason the code is not working and whether the checkbox is or is not checked, the page shows up.
If you have time, please help me out. Thanks again for such a great start at a wizard!
-Laura
optional pages