21 references to ControlTabNavigationProperty
PresentationFramework (21)
src\Framework\MS\Internal\AppModel\RootBrowserWindow.cs (1)
84
SetValue(KeyboardNavigation.
ControlTabNavigationProperty
, KeyboardNavigationMode.Continue);
src\Framework\System\Windows\Controls\ComboBox.cs (1)
48
KeyboardNavigation.
ControlTabNavigationProperty
.OverrideMetadata(typeof(ComboBox), new FrameworkPropertyMetadata(KeyboardNavigationMode.None));
src\Framework\System\Windows\Controls\ContextMenu.cs (1)
55
KeyboardNavigation.
ControlTabNavigationProperty
.OverrideMetadata(typeof(ContextMenu), new FrameworkPropertyMetadata(KeyboardNavigationMode.Contained));
src\Framework\System\Windows\Controls\DataGrid.cs (1)
59
KeyboardNavigation.
ControlTabNavigationProperty
.OverrideMetadata(ownerType, new FrameworkPropertyMetadata(KeyboardNavigationMode.Once));
src\Framework\System\Windows\Controls\Frame.cs (1)
138
KeyboardNavigation.
ControlTabNavigationProperty
.OverrideMetadata(typeof(Frame), new FrameworkPropertyMetadata(KeyboardNavigationMode.Once));
src\Framework\System\Windows\Controls\Menu.cs (1)
65
KeyboardNavigation.
ControlTabNavigationProperty
.OverrideMetadata(typeof(Menu), new FrameworkPropertyMetadata(KeyboardNavigationMode.Once));
src\Framework\System\Windows\Controls\ToolBar.cs (1)
79
KeyboardNavigation.
ControlTabNavigationProperty
.OverrideMetadata(typeof(ToolBar), new FrameworkPropertyMetadata(KeyboardNavigationMode.Once));
src\Framework\System\Windows\Controls\ToolBarTray.cs (1)
55
KeyboardNavigation.
ControlTabNavigationProperty
.OverrideMetadata(typeof(ToolBarTray), new FrameworkPropertyMetadata(KeyboardNavigationMode.Cycle));
src\Framework\System\Windows\Input\KeyboardNavigation.cs (12)
151
return _navigationProperty ==
ControlTabNavigationProperty
? GetControlTabOnceActiveElement(d) : GetTabOnceActiveElement(d);
438
/// <seealso cref="KeyboardNavigation.
ControlTabNavigationProperty
" />
445
element.SetValue(
ControlTabNavigationProperty
, mode);
453
/// <seealso cref="KeyboardNavigation.
ControlTabNavigationProperty
" />
462
return (KeyboardNavigationMode)element.GetValue(
ControlTabNavigationProperty
);
994
UpdateActiveElement(activeElement,
ControlTabNavigationProperty
);
1010
UpdateActiveElement(container, activeElement,
ControlTabNavigationProperty
);
1050
_navigationProperty = (modifierKeys & ModifierKeys.Control) == ModifierKeys.Control ?
ControlTabNavigationProperty
: TabNavigationProperty;
1055
_navigationProperty = (modifierKeys & ModifierKeys.Control) == ModifierKeys.Control ?
ControlTabNavigationProperty
: TabNavigationProperty;
1060
_navigationProperty = (modifierKeys & ModifierKeys.Control) == ModifierKeys.Control ?
ControlTabNavigationProperty
: TabNavigationProperty;
1065
_navigationProperty = (modifierKeys & ModifierKeys.Control) == ModifierKeys.Control ?
ControlTabNavigationProperty
: TabNavigationProperty;
1680
if (_navigationProperty ==
ControlTabNavigationProperty
|| !IsFocusScope(e))
src\Framework\System\Windows\Window.cs (1)
92
KeyboardNavigation.
ControlTabNavigationProperty
.OverrideMetadata(typeof(Window), new FrameworkPropertyMetadata(KeyboardNavigationMode.Cycle));