1

我需要在我的 WPF 应用程序的 TabControl 中禁用 ctrl + 选项卡导航。

我尝试用

protected override void OnKeyDown(KeyEventArgs e)
{
    if (Keyboard.Modifiers == ModifierKeys.Control && e.Key == Key.Tab)
    {
        e.Handled = true;
    }
}

但这不起作用

4

0 回答 0