Class
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:

cs-api-definition
public static class RadWizardCommands

Inheritance: objectRadWizardCommands

Properties

Cancel

Gets the cancel command.

Declaration

cs-api-definition
public static ICommand Cancel { get; }

Property Value

ICommand

The cancel command.

Finish

Gets the finish command.

Declaration

cs-api-definition
public static ICommand Finish { get; }

Property Value

ICommand

The finish command.

Help

Gets the help command.

Declaration

cs-api-definition
public static ICommand Help { get; }

Property Value

ICommand

The cancel command.

MoveCurrentToNext

Gets the move current to next command.

Declaration

cs-api-definition
public static ICommand MoveCurrentToNext { get; }

Property Value

ICommand

The move current to next command.

MoveCurrentToPrevious

Gets the move current to previous command.

Declaration

cs-api-definition
public static ICommand MoveCurrentToPrevious { get; }

Property Value

ICommand

The move current to previous command.