System.Windows.Forms.Shortcut - is that all there is?

  • Thread starter Thread starter Benny Raymond
  • Start date Start date
B

Benny Raymond

I'd like to add a shortcut that isn't in this list... am i sol?

or is it possible to add shortcuts like: SHIFT+UP


thanks

~Benny
 
Hi Benny,

You can always handle the key stroke manually in one of the Key events of
the form and do a PerformClick on the Menu Item in question. It's not
exactly what you are looking for, but it is an acceptable workaround.

Hope that helps!
 
I'd like to add a shortcut that isn't in this list... am i sol?

Yes. The shortcut list is pretty... short. But you can always
override Form.OnKeyDown to check for arbitrary keys.
 
Back
Top