My WPF application has behaviour triggered by the functions keys (F1-F12).
My code is along these lines:
private void Window_Ke
This worked for me, for F1
Private Sub Window_KeyDown(sender As Object, e As KeyEventArgs) Handles Me.KeyDown If (e.Key = Key.F1) Then ShowHelp() End If End Sub