//--------------------------------------------------------------------------------
 /// <summary>
 /// Allows the base class to handle a page change event. Right now, there's
 /// nothing to do, but you could add some apppropriate functionalty that
 /// suits your application.
 /// </summary>
 /// <param name="sender"></param>
 /// <param name="e"></param>
 void parentForm_WizardPageChange(object sender, WizardPageChangeArgs e)
 {
 }
 //--------------------------------------------------------------------------------
 /// <summary>
 /// Fires the WizardPageCreatedEvent event.
 /// </summary>
 /// <param name="e"></param>
 public void Raise_WizardPageChangeEvent(WizardPageChangeArgs e)
 {
     UpdateWizardForm(e.ActivatedPage);
     // tell the wizard form we have a new active page
     WizardPageChangeEvent(this, e);
 }