标签: wpf c#-4.0 tabcontrol
我需要在我的WPF应用程序的TabControl中禁用ctrl + tab导航。
我尝试用
protected override void OnKeyDown(KeyEventArgs e) { if (Keyboard.Modifiers == ModifierKeys.Control && e.Key == Key.Tab) { e.Handled = true; } }
但这不起作用