Example #1
0
 //ενεργοποιείται όταν εμφανίζεται η σελίδα
 void WizardPageActivated(object sender, WizardPageActivateArgs e)
 {
     PaintTitle();
     this.buttonBack.Enabled = (e.ActivatedPage.WizardPageType != WizardPageType.Start);
     if (e.ActivatedPage.WizardPageType == WizardPageType.Stop)
     {
         this.buttonNext.Text = "Τέλος";
     }
     else
     {
         this.buttonNext.Text = "'Επόμενη >";
     }
 }
Example #2
0
		protected void Raise_WizardPageActivated(WizardPageActivateArgs e)
		{
			WizardPageActivated(this, e);
		}
Example #3
0
 //--------------------------------------------------------------------------------
 /// <summary>
 /// Allows the derived Wizard form to raise the WizardPageActivated event.
 /// </summary>
 /// <param name="e"></param>
 protected void Raise_WizardPageActivated(WizardPageActivateArgs e)
 {
     WizardPageActivated(this, e);
 }