/// <summary> /// Wizard control with designer support /// </summary> public Wizard() { //Empty collection of Pages vPages = new PageCollection(this); // This call is required by the Windows.Forms Form Designer. InitializeComponent(); }
/// <summary> /// Constructs a new event /// </summary> /// <param name="index">The index of the next page in the collection</param> /// <param name="pages">Pages in the wizard that are acceptable to be </param> public PageEventArgs(int index, PageCollection pages) : base() { vPage = index; vPages = pages; }