Class
CommandService

Encapsulates the command-related routine within a RadRadialMenu instance.

Definition

Namespace:Telerik.Windows.Controls.RadialMenu

Assembly:Telerik.Windows.Controls.Navigation.dll

Syntax:

cs-api-definition
public class CommandService : CommandServiceBase<RadRadialMenu>

Inheritance: objectAttachableObject<RadRadialMenu>ServiceBase<RadRadialMenu>CommandServiceBase<RadRadialMenu>CommandService

Inherited Members ServiceBase<RadRadialMenu>.IsOperationalAttachableObject<RadRadialMenu>.OnDetached(RadRadialMenu)AttachableObject<RadRadialMenu>.OnAttached()AttachableObject<RadRadialMenu>.Owner

Methods

CanExecuteDefaultCommand(CommandId, object)

Determines whether the default command, associated with the specified Id can be executed given the parameter provided.

Declaration

cs-api-definition
public bool CanExecuteDefaultCommand(CommandId id, object parameter)

Parameters

id

CommandId

The CommandId value to look for.

parameter

object

The parameter that is passed to the CanExecute and Execute methods of the command.

Returns

bool

True if the command can be executed, false otherwise.

ExecuteCommand(CommandId, object)

Attempts to find the command, associated with the specified Id and to perform its Execute routine, using the provided parameter.

Declaration

cs-api-definition
public bool ExecuteCommand(CommandId id, object parameter)

Parameters

id

CommandId

The CommandId value to look for.

parameter

object

The parameter that is passed to the CanExecute and Execute methods of the command.

Returns

bool

True if the command is successfully executed, false otherwise.

ExecuteDefaultCommand(CommandId, object)

Executes the default (built-in) command (without looking for user-defined commands), associated with the specified Id.

Declaration

cs-api-definition
public bool ExecuteDefaultCommand(CommandId id, object parameter)

Parameters

id

CommandId

The CommandId value to look for.

parameter

object

The parameter that is passed to the CanExecute and Execute methods of the command.

Returns

bool

True if the command is successfully executed, false otherwise.