ClassRadWizardCommands
Represents a static class that defines and manages a set of routed UI commands for a wizard-like interface. The class provides commands for navigating through steps in a wizard, including moving to the next or previous step, finishing the wizard, canceling the operation, and accessing help. It ensures that each command is created only once and can be accessed through static properties. The commands are identified by an enumeration and have associated UI text for display purposes.
Definition
Namespace:Telerik.Windows.Controls.Wizard
Assembly:Telerik.Windows.Controls.Navigation.dll
Syntax:
public static class RadWizardCommands
Inheritance: objectRadWizardCommands
Properties
Cancel
Gets the cancel command.
Declaration
public static ICommand Cancel { get; }
Property Value
The cancel command.
Finish
Gets the finish command.
Declaration
public static ICommand Finish { get; }
Property Value
The finish command.
Help
Gets the help command.
Declaration
public static ICommand Help { get; }
Property Value
The cancel command.
MoveCurrentToNext
Gets the move current to next command.
Declaration
public static ICommand MoveCurrentToNext { get; }
Property Value
The move current to next command.
MoveCurrentToPrevious
Gets the move current to previous command.
Declaration
public static ICommand MoveCurrentToPrevious { get; }
Property Value
The move current to previous command.