Please assist me: How to assign an up arrow keyboard shortcut to action or menu item, and keep it actual for navigating the list control (e.g. ListBox/Virtual Treeview/other) at the same time?
Thanks!
feedback
|
|
You comment:
but it certainly is possible, it just isn't a good idea to do it, and against the Windows User Experience Interaction Guidelines. But if you're set on implementing it, here's how. Override the following method in your form class that contains the action components:
and in it you can prevent the Up and Down key from triggering the actions they are shortcuts for:
Note that you should test for the correct shift state too, and check that your code doesn't break any other window behaviour users expect, like moving of the window with the arrow keys. | |||
feedback
|
|
On the form properties set then on KeyUp event of the form write event to check if you Up key is pressed and make it call the menu item (on this case menu item called Action1):
If you need the Action1 to be executed even if they Current Control isn't the listbox, remove the | |||||
feedback
|