コード例 #1
0
ファイル: Wizard.cs プロジェクト: alex765022/IBN
        /// <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
ファイル: Wizard.cs プロジェクト: 0anion0/IBN
        /// <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
ファイル: PageEventHandler.cs プロジェクト: alex765022/IBN
 /// <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;
 }
コード例 #4
0
ファイル: PageEventHandler.cs プロジェクト: 0anion0/IBN
 /// <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;
 }