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?
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;
}
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
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.
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