在 WPF 控件中,在Alt + Key键盘组合上会发出蜂鸣声。
我有一些代码可以处理以下内容的特定Alt + Key快捷键:
void UIElement.OnKeyDown(KeyEventArgs e);
如何抑制这种声音? WinForms 显然具有 e.SuppressKeyPress = true ,但在 WPF 中已不存在。
答案 0 :(得分:0)
要处理此问题,您应该使用其他事件
private void TextBox_PreviewTextInput(object sender, TextCompositionEventArgs e)
{
e.Handled = true;
}
了解此事件,请参考:URL