i want to set hotkeys for winforms.Tht is Ctrl+N for new form and Ctrl+S for save.Can anyone please tell me how is that possible?
|
|
Set
Create handel for the Key Down event:
Example of handel:
|
|||
|
|
I'd like a
|
|||||||
|
|
If you are trying to link them to menu items in your application, then you don't need any code. On the menu item, you can simply setup the shortcut key property and it will run the same event that you have configured for your menu item click. |
|||
|
|
|
You can also override
I believe it's more suitable for hotkeys. No |
|||
|
|
|
First, you need to handle the key down event, then you can start watching out for your modifiers...
Of course, you need to make sure your form subscribes to the KeyDown event. |
||||
|
|
|
You can set it using a hidden menu too, if you want. Just set the property of menu.visible = false; |
|||
|
|