I am working on an application that has a Menu on top of it. I want to use a different method for shortcut keys (being this snippet): this is for shortcut key: CTRL + N, 1
bool prefixSeen = false;
protected override bool ProcessCmdKey(ref Message msg, Keys keyData)
{
if (prefixSeen)
{
switch (keyData)
{
case (Keys.Control | Keys.D1):
MessageBox.Show("New file");
prefixSeen = false;
break;
}
}
switch (keyData)
{
case (Keys.Control | Keys.n):
prefixSeen = true;
break;
}
return base.ProcessCmdKey(ref msg, keyData);
}
Code taken from here.
Here is my menu:
And I want in menu items to be displayed (aligned on the right) the shortcut key (that should just be interpreted as a string I think). How can I achieve this effect?
Thanks in advance, and a Happy New Year to every one.
Edit: the built-in method for Visual Studio is:
Some Windows public terminals do not have a Menu key on their keyboard to prevent users from right clicking; however, in many Windows applications, a similar functionality can be invoked with the ⇧ Shift + F10 keyboard shortcut, or sometimes Ctrl + ⇧ Shift + F10 .
Use the MenuItem.ShortCut
and MenuItem.ShowShortCut
Properties.
If you want to create your own custom shortcuts these properties will not work for you, since they depend on a predetermined enumeration of ShortCut Keys. In that case I would suggest that you add it to the Text of your Menu, there is no automatic way of doing it.
Since it was pointed out that you are using ToolStripMenuItems
you should be able to independantly set the ShortCutKeyDisplayString
to what every you wish. You will still need to handle the actual Shortcut yourself.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With