Ejemplo n.º 1
0
 /// <Summary>Constructs a custom WizardEventArgs object</Summary>
 /// <Param name="pageNo">The Page No where the Event happened</Param>
 /// <Param name="pages">The WizardPageCollection</Param>
 public WizardEventArgs( int pageNo, WizardPageCollection pages )
 {
     this.m_CurPageNo = 0;
     this.m_PrevPageNo = -1;
     this.m_CurPageNo = pageNo;
     this.m_PrevPageNo = pageNo;
     this.m_Pages = pages;
 }
Ejemplo n.º 2
0
 /// <Summary>Constructs a custom WizardEventArgs object</Summary>
 /// <Param name="pageNo">The Page No where the Event happened</Param>
 /// <Param name="pages">The WizardPageCollection</Param>
 public WizardEventArgs(int pageNo, WizardPageCollection pages)
 {
     this.m_CurPageNo  = 0;
     this.m_PrevPageNo = -1;
     this.m_CurPageNo  = pageNo;
     this.m_PrevPageNo = pageNo;
     this.m_Pages      = pages;
 }
Ejemplo n.º 3
0
 public Wizard()
 {
     Init               += new EventHandler(this.Page_Init);
     Load               += new EventHandler(this.Page_Load);
     this.m_Pages        = new WizardPageCollection();
     this.m_EnableBack   = true;
     this.m_EnableNext   = true;
     this.m_EnableFinish = true;
 }
Ejemplo n.º 4
0
 public Wizard()
 {
     Init += new EventHandler( this.Page_Init );
     Load += new EventHandler( this.Page_Load );
     this.m_Pages = new WizardPageCollection();
     this.m_EnableBack = true;
     this.m_EnableNext = true;
     this.m_EnableFinish = true;
 }