Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Customizing menu shortcut keys

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:

enter image description here

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:

enter image description here

like image 956
Victor Avatar asked Dec 31 '12 17:12

Victor


People also ask

What is the keyboard shortcut for menu?

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 .


1 Answers

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.

like image 195
Mark Hall Avatar answered Oct 28 '22 00:10

Mark Hall