My WPF application has behaviour triggered by the functions keys (F1-F12).
My code is along these lines:
private void Window_Ke
In addition to Yacoder's response, use the following to check for the F10 key:
case Key.System: if (e.SystemKey == Key.F10) { // logic... }
The SystemKey property will tell you which System key was pressed.