New to Telerik UI for WPFStart a free 30-day trial

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:

C#
public static class RadWizardCommands

Inheritance: objectRadWizardCommands

Properties

Gets the cancel command.

C#
public static ICommand Cancel { get; }
Property Value:

The cancel command.

Gets the finish command.

C#
public static ICommand Finish { get; }
Property Value:

The finish command.

Gets the help command.

C#
public static ICommand Help { get; }
Property Value:

The cancel command.

Gets the move current to next command.

C#
public static ICommand MoveCurrentToNext { get; }
Property Value:

The move current to next command.

Gets the move current to previous command.

C#
public static ICommand MoveCurrentToPrevious { get; }
Property Value:

The move current to previous command.