RadWizardCommands
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
Gets the cancel command.
public static ICommand Cancel { get; }
The cancel command.
Gets the finish command.
public static ICommand Finish { get; }
The finish command.
Gets the help command.
public static ICommand Help { get; }
The cancel command.
Gets the move current to next command.
public static ICommand MoveCurrentToNext { get; }
The move current to next command.
Gets the move current to previous command.
public static ICommand MoveCurrentToPrevious { get; }
The move current to previous command.