C# Class iTunesAgent.UI.Components.Wizard.AbstractWizardPage.AbstractWizardPage

Inheritance: System.Windows.Forms.UserControl
Show file Open project: notpod/Notpod

Public Methods

Method Description
Populate ( ) : void

Implement this method to populate your wizard page with data before it is displayed.

ValidateBeforeNext ( ) : bool

This method will be called by the wizard just before it jumps to the next page. You should implement any necessary data validation here before moving forward. When everything is ready and you have persisted the necessary data to the dataStore, return true.

Private Methods

Method Description
InitializeComponent ( ) : void

Method Details

Populate() public method

Implement this method to populate your wizard page with data before it is displayed.
public Populate ( ) : void
return void

ValidateBeforeNext() public method

This method will be called by the wizard just before it jumps to the next page. You should implement any necessary data validation here before moving forward. When everything is ready and you have persisted the necessary data to the dataStore, return true.
public ValidateBeforeNext ( ) : bool
return bool