Summary description for PanelCollection.
Inheritance: System.Collections.CollectionBase
Esempio n. 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();
        }
Esempio n. 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();
        }
Esempio n. 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;
 }
Esempio n. 4
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;
 }