Interface
IKeyboardCommandExecutor

Provides logic for keyboard-driven commands execution.

Definition

Namespace:Telerik.Windows.Controls.Wizard

Assembly:Telerik.Windows.Controls.Navigation.dll

Syntax:

cs-api-definition
public interface IKeyboardCommandExecutor

Methods

HandleKeyDown(KeyEventArgs)

Handles the logic executed on KeyDown.

Declaration

cs-api-definition
void HandleKeyDown(KeyEventArgs args)

Parameters

args

KeyEventArgs

ProvideCommandsForKey(KeyEventArgs)

Provides a list of actions to be executed when a key is pressed.

Declaration

cs-api-definition
[SuppressMessage("Microsoft.Design", "CA1002:DoNotExposeGenericLists")]
List<DelegateCommandWrapper> ProvideCommandsForKey(KeyEventArgs args)

Parameters

args

KeyEventArgs

Returns

List<DelegateCommandWrapper>