Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question
2  
My crystal ball says you're actually talking about IDE short-cut keystrokes. It does take special equipment when it's asked like this. – Hans Passant Feb 19 '11 at 4:24

6 Answers

up vote 8 down vote accepted

Set

myForm.KeyPreview = true;

Create handel for the Key Down event:

myForm.KeyDown += new KeyEventHandler(Form_KeyDown);

Example of handel:

    // Hot keys handel
    void Form_KeyDown(object sender, KeyEventArgs e)
    {
        if (e.Control && e.KeyCode == Keys.S)       // Ctrl-S Save
        {
            // do what you want here
            e.SuppressKeyPress = true;  // stops bing! also sets handeled which stop event bubbling
        }
    }
share|improve this answer
Oh you are correct. I forgot to set the KeyPreview property, which is necessary for this case. +1. – Danny Chen Feb 19 '11 at 4:08

I'd like a KeyDown event for the Form and some code like this:

private void Form1_KeyDown(object sender, KeyEventArgs e)
{
    if (e.KeyData == (Keys.Control | Keys.N))
    {
        CreateNew();
    }
}
share|improve this answer
can anyone please tell me what is this CreateNew()?Is it a built in function? – Riya Feb 19 '11 at 5:01
@riya7887: It's just an example. It's not a built in method. You can create such a method and put all the related code in. – Danny Chen Feb 19 '11 at 6:16
Thanks a lot – Riya Feb 19 '11 at 9:59

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.

share|improve this answer

You can also override ProcessCmdKey in your Form derived type like this:

protected override bool ProcessCmdKey(ref Message message, Keys keys)
{
    switch (keys)
    {
        case Keys.B | Keys.Control | Keys.Alt | Keys.Shift:
            // ... Process Shift+Ctrl+Alt+B ...

            return true; // signal that we've processed this key
    }

    // run base implementation
    return base.ProcessCmdKey(ref message, keys);
}

I believe it's more suitable for hotkeys. No KeyPreview needed.

share|improve this answer

First, you need to handle the key down event, then you can start watching out for your modifiers...

    private void Form1_KeyDown(object sender, System.Windows.Forms.KeyEventArgs e)
    {
            if (Control.ModifierKeys == Keys.Control && e.KeyCode == Keys.S) 
            {
            //Do whatever
            }
    }

Of course, you need to make sure your form subscribes to the KeyDown event.

share|improve this answer

You can set it using a hidden menu too, if you want. Just set the property of menu.visible = false;

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.