WizardCommands Class
Contains the commands used for the Wizard control.
public static class WizardCommands
- Inheritance:
- object object
Properties
BacktrackToPage
The RoutedCommand that is used to backtrack to the specified page.
public static RoutedCommand BacktrackToPage { get; }
Property Value
Remarks
The command's parameter may be set to three different types of data. Possible values are a reference to a WizardPage within the parent Wizard, the name of another WizardPage within the parent Wizard, or an integer indicating the index of a WizardPage within the parent Wizard.
This command is the same as the GoToPage except that it uses backward progress instead of forward progress.
Cancel
The RoutedCommand that is used to cancel the wizard.
Finish
The RoutedCommand that is used to finish the wizard.
GoToPage
The RoutedCommand that is used to go directly to the specified page.
public static RoutedCommand GoToPage { get; }
Property Value
Remarks
The command's parameter may be set to three different types of data. Possible values are a reference to a WizardPage within the parent Wizard, the name of another WizardPage within the parent Wizard, or an integer indicating the index of a WizardPage within the parent Wizard.
This command is the same as the BacktrackToPage command except that it uses forward progress instead of backward progress.
Help
The RoutedCommand that is used to display help for the wizard.
NextPage
The RoutedCommand that is used to advance to the next wizard page.
PreviousPage
The RoutedCommand that is used to backtrack to the previous wizard page.