-
Notifications
You must be signed in to change notification settings - Fork 3
KeyboardShortcuts.IKeyAction
JaykeBird edited this page Feb 21, 2023
·
4 revisions
Back to home | Back to Reference | View raw text
The interface which all key actions are based on.
flowchart LR
classDef interfaceStyle stroke-dasharray: 5 5;
classDef abstractStyle stroke-width:4px
subgraph SolidShineUi.KeyboardShortcuts
SolidShineUi.KeyboardShortcuts.IKeyAction[[IKeyAction]]
class SolidShineUi.KeyboardShortcuts.IKeyAction interfaceStyle;
end
Type | Name | Methods |
---|---|---|
string |
ID Get or set the unique ID associated with this key action. |
get, set |
UIElement |
SourceElement Get the UI element associated with the key action's activator, if any. |
get |
Returns | Name |
---|---|
void |
Execute ()Execute this key action. |
The interface which all key actions are based on.
public void Execute()
Execute this key action.
public string ID { get; set; }
Get or set the unique ID associated with this key action.
public UIElement SourceElement { get; }
Get the UI element associated with the key action's activator, if any.
Generated with ModularDoc