Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Adding an F5 Hotkey in C#

Tags:

c#

hotkeys

I'm making a windows app (WinForms) and would like my application to call a method when the user presses F5 - this should work no matter what the user is doing but they must be using the program - I don't want to use global hooks - any ideas?

like image 941
joe Avatar asked Dec 26 '09 20:12

joe


3 Answers

Override the form's ProcessCmdKey on your main form and look for F5.

protected override bool ProcessCmdKey (ref Message msg, Keys keyData)
{
    bool bHandled = false;
    // switch case is the easy way, a hash or map would be better, 
    // but more work to get set up.
    switch (keyData)
    {
        case Keys.F5:
            // do whatever
            bHandled = true;
            break;
    }
    return bHandled;
}
like image 125
John Knoeller Avatar answered Nov 02 '22 21:11

John Knoeller


Check out the Form.KeyPreview property, it will allow you to trap all KeyDown, KeyUp and KeyPress events at the form level before allowing them to be processed by individual elements.

MSDN Form.KeyPreview page

like image 45
Aviad P. Avatar answered Nov 02 '22 22:11

Aviad P.


If you have only one form that can have focus, you can set the KeyPreview property of that form to true and handle the KeyPress event.

The KeyPreview property will cause the form to receive all key presses, regardless which control on the form has the input focus.

like image 3
Joey Avatar answered Nov 02 '22 22:11

Joey