wpf阻止键盘快捷键alt+space,alt+F4
2021-04-20 08:25
///
/// 阻止 alt+f4和alt+space 按键
///
///
protected override void OnKeyDown(System.Windows.Input.KeyEventArgs e)
{
if (Keyboard.Modifiers == ModifierKeys.Alt && e.SystemKey == Key.Space)
{
e.Handled = true;
}
else if (Keyboard.Modifiers == ModifierKeys.Alt && e.SystemKey == Key.F4)
{
e.Handled = true;
}
else
{
base.OnKeyDown(e);
}
}
文章标题:wpf阻止键盘快捷键alt+space,alt+F4
文章链接:http://soscw.com/index.php/essay/77042.html