Property | Type | Description | |
---|---|---|---|
WizardManager | WizardManager |
Property | Type | Description | |
---|---|---|---|
WizardPage | System |
Method | Description | |
---|---|---|
CheckCanGoBack ( ) : bool |
Is called before going to the previous step of the wizard. Can be overridden to implement the test corresponding to the situation.
|
|
CheckCanGoFurther ( ) : bool |
Is called before going to the next step of the wizard. Can be overridden to implement the test corresponding to the situation.
|
|
OnActivated ( ) : void |
Is called after ActivateItem function.
|
|
OnActivating ( ) : bool |
Is called before ActivateItem function.
|
|
OnBeforeGoBack ( ) : bool |
Is called right before going ot the previous step, but after checking CanGoBack. Can be overridden to do something before changing the ActiveItem. Return false to cancel going ot the previous WizardPage
|
|
OnBeforeNext ( ) : bool |
Is called right before going ot the next step, but after checking CanGoFurther. Can be overridden to do something before changing the ActiveItem. Return false to cancel going ot the next WizardPage
|
|
RaiseActivated ( WizardNavigableEventArgs e ) : void | ||
RaiseActivating ( CancelEventArgs e ) : void | ||
WizardPage ( WizardManager wizardManager, |
This constructor specifies a next wizard. Its "IsLastStep" Property is autmatically set to false.
|
|
WizardPage ( WizardManager wizardManager, bool isLastStep, string title = "" ) : System |
This constructor doesn't specify a next wizard page (you can do it directly in the WizardPage). You should therefor specify if it is the last step of the wizard or not.
|
Method | Description | |
---|---|---|
WizardPage ( WizardManager wizardManager, |
public RaiseActivated ( WizardNavigableEventArgs e ) : void | ||
e | WizardNavigableEventArgs | |
return | void |
public RaiseActivating ( CancelEventArgs e ) : void | ||
e | CancelEventArgs | |
return | void |
public WizardPage ( WizardManager wizardManager, |
||
wizardManager | WizardManager | The WizardManager |
next | The next WizardPage | |
title | string | (optional) title of the page |
return | System |
public WizardPage ( WizardManager wizardManager, bool isLastStep, string title = "" ) : System | ||
wizardManager | WizardManager | The WizardManager |
isLastStep | bool | Whether this step is the last of the wizard |
title | string | (optional) title of the page |
return | System |