WizardCommands Class
Contains the commands used for the Wizard control.
public static class WizardCommands
- Inheritance:
- object object
Properties
BacktrackToPage
Gets the RoutedCommand that is used to backtrack to the specified page.
public static RoutedCommand BacktrackToPage { get; }
Property Value
- RoutedCommand:
The RoutedCommand that is used to backtrack to the specified page.
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
Gets the RoutedCommand that is used to cancel the wizard.
public static RoutedCommand Cancel { get; }
Property Value
- RoutedCommand:
The RoutedCommand that is used to cancel the wizard.
Finish
Gets the RoutedCommand that is used to finish the wizard.
public static RoutedCommand Finish { get; }
Property Value
- RoutedCommand:
The RoutedCommand that is used to finish the wizard.
GoToPage
Gets the RoutedCommand that is used to go directly to the specified page.
public static RoutedCommand GoToPage { get; }
Property Value
- RoutedCommand:
The RoutedCommand that is used to go directly to the specified page.
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
Gets the RoutedCommand that is used to display help for the wizard.
public static RoutedCommand Help { get; }
Property Value
- RoutedCommand:
The RoutedCommand that is used to display help for the wizard.
NextPage
Gets the RoutedCommand that is used to advance to the next wizard page.
public static RoutedCommand NextPage { get; }
Property Value
- RoutedCommand:
The RoutedCommand that is used to advance to the next wizard page.
PreviousPage
Gets the RoutedCommand that is used to backtrack to the previous wizard page.
public static RoutedCommand PreviousPage { get; }
Property Value
- RoutedCommand:
The RoutedCommand that is used to backtrack to the previous wizard page.