private void CancelButton_Click(object sender, EventArgs e)
 {
     try
     {
         _wizardController.CancelWizard();
     }
     catch (Exception ex)
     {
         GlobalRegistry.UIExceptionNotifier.Notify(ex, "", "Error ");
     }
 }
 private void CancelButton_Click(object sender, EventArgs e)
 {
     _wizardController.CancelWizard();
 }