tags:

views:

524

answers:

3

Hi, 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?

+1  A: 

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.

Joey
+1 for pointing out that it'll only work for each form you set that property for and not the global application
Carson Myers
+4  A: 

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

Aviad P.
This only works in the case of trivial apps that are a single form and one of the forms children always has focus. it's more like a hack that works most of the time than a solution.
John Knoeller
+1  A: 

override 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.KeyCode)
   {
   case VK_F5:
       // do whatever
       bHandled = true;
       break;
   }
return bHandled;
}
John Knoeller