메소드 | 설명 | |
---|---|---|
KeyDown ( System.Windows.Input.KeyEventArgs args, ITextBuffer targetBuffer, System.Action next ) : void |
Handles the KeyDown event if the pressed key has been bound.
|
메소드 | 설명 | |
---|---|---|
AddAltShiftCommand ( Key key, Func |
Binds a key with Alt+Shift held down.
|
|
AddCommand ( Key key, Func |
Binds a single key.
|
|
AddCommand ( ModifierKeys modifiers, Key key, Func |
Binds a key with the specified modifiers held down.
|
|
AddControlCommand ( Key key, Func |
Binds a key with Control held down.
|
|
AddControlExtendableCommand ( Key key, Action |
Binds a key with the Control key, which will be invoked with a boolean indicating the state of the Shift key. This should be used for cursor movement commands.
|
|
AddControlShiftCommand ( Key key, Func |
Binds a key with Control+Shift held down.
|
|
AddExtendableCommand ( Key key, Action |
Binds a key which will be invoked with a boolean indicating the state of the Shift key. This should be used for cursor movement commands.
|
|
AddShiftCommand ( Key key, Func |
Binds a key with Shift held down.
|
|
WithTrue ( System.Action method ) : Func |
Wraps a void-returning method in an Action{Boolean} for the AddCommand methods.
|
protected AddAltShiftCommand ( Key key, Func |
||
key | Key | |
method | Func |
|
리턴 | void |
protected AddCommand ( Key key, Func |
||
key | Key | |
method | Func |
|
리턴 | void |
protected AddCommand ( ModifierKeys modifiers, Key key, Func |
||
modifiers | ModifierKeys | |
key | Key | |
method | Func |
|
리턴 | void |
protected AddControlCommand ( Key key, Func |
||
key | Key | |
method | Func |
|
리턴 | void |
protected AddControlExtendableCommand ( Key key, Action |
||
key | Key | |
method | Action |
|
리턴 | void |
protected AddControlShiftCommand ( Key key, Func |
||
key | Key | |
method | Func |
|
리턴 | void |
protected AddExtendableCommand ( Key key, Action |
||
key | Key | |
method | Action |
|
리턴 | void |
protected AddShiftCommand ( Key key, Func |
||
key | Key | |
method | Func |
|
리턴 | void |
public KeyDown ( System.Windows.Input.KeyEventArgs args, ITextBuffer targetBuffer, System.Action next ) : void | ||
args | System.Windows.Input.KeyEventArgs | |
targetBuffer | ITextBuffer | |
next | System.Action | |
리턴 | void |
protected static WithTrue ( System.Action method ) : Func |
||
method | System.Action | |
리턴 | Func |