Posted 18 years ago
by Charles W. Hooks

I have successfully figure out how to implement keyBinds a couple different ways, currently I am looking to provide different key binds for existign commands, like incremental search. I am having a hard time finding an object from incremental search that I can use...
The following example I found work greate for a couple of things and I've used key press events for others...
editor.CommandLinks.Add(new CommandLink(new CopyToClipboardCommand(),
new KeyBinding(ActiproSoftware.WinUICore.Input.ModifierKeys.Control, Keys.C)));
I must be missing something obvious on how to add additional key maps for existing commands...
The following example I found work greate for a couple of things and I've used key press events for others...
editor.CommandLinks.Add(new CommandLink(new CopyToClipboardCommand(),
new KeyBinding(ActiproSoftware.WinUICore.Input.ModifierKeys.Control, Keys.C)));
I must be missing something obvious on how to add additional key maps for existing commands...