예제 #1
0
        /// <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();
        }
예제 #2
0
		/// <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();
		}
예제 #3
0
 /// <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;
 }
		/// <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;
		}