它应该Key.OemQuestion在美国键盘上。但在瑞典语键盘上,这D7取决于情况。键盘上的按键并不总是产生相同的字符。
根据您想要执行的操作,处理该PreviewTextInput事件可能会更好:
protected override void OnPreviewTextInput(TextCompositionEventArgs e)
{
base.OnPreviewTextInput(e);
if (e.Text == "/")
{
Debug.WriteLine("...");
}
}
Run Code Online (Sandbox Code Playgroud)