Hola
zorrillafrancis lo deseas llamar desde un formulario?, si es asi, entonces del formulario que lo quieras llamar en su evento keydown colocas este code :
Y luego creas esta funcion para que veas el resultado. Obviamente le cambias el mensaje de salida por la muestra de tu form frmForm.show();
Código c#:
Ver originalpublic void FuncKeysModule(Keys value)
{
//Check what function key is in a pressed state, and then perform the corresponding action.
switch (value)
{
case Keys.F1:
//Add the code for the function key F1 here.
MessageBox.Show("F1 pressed");
break;
case Keys.F2:
//Add the code for the function key F2 here.
MessageBox.Show("F2 pressed");
break;
case Keys.F3:
//Add the code for the function key F3 here.
MessageBox.Show("F3 pressed");
break;
case Keys.F4:
//Add the code for the function key F4 here.
MessageBox.Show("F4 pressed");
break;
case Keys.F5:
//Add the code for the function key F5 here.
MessageBox.Show("F5 pressed");
break;
case Keys.F6:
//Add the code for the function key F6 here.
MessageBox.Show("F6 pressed");
break;
case Keys.F7:
//Add the code for the function key F7 here.
MessageBox.Show("F7 pressed");
break;
case Keys.F8:
//Add the code for the function key F8 here.
MessageBox.Show("F8 pressed");
break;
case Keys.F9:
//Add the code for the function key F9 here.
MessageBox.Show("F9 pressed");
break;
case Keys.F10:
//Add the code for the function key F10 here.
MessageBox.Show("F10 pressed");
break;
case Keys.F11:
//Add the code for the function key F11 here.
MessageBox.Show("F11 pressed");
break;
case Keys.F12:
//Add the code for the key F12 here
MessageBox.Show("F12 pressed");
break;
}
}
Espero que te haya sido de utilidad. Saludos!