Control.TabNavigation Property

Definition

Gets or sets a value that modifies how tabbing and TabIndex work for this control.

Note

For Windows 10 Creators Update (build 10.0.15063) and newer, the TabFocusNavigation property is available on the UIElement base class to include objects in the tab sequence that do not use a ControlTemplate.

public:
 property KeyboardNavigationMode TabNavigation { KeyboardNavigationMode get(); void set(KeyboardNavigationMode value); };
KeyboardNavigationMode TabNavigation();

void TabNavigation(KeyboardNavigationMode value);
public KeyboardNavigationMode TabNavigation { get; set; }
var keyboardNavigationMode = control.tabNavigation;
control.tabNavigation = keyboardNavigationMode;
Public Property TabNavigation As KeyboardNavigationMode
<control TabNavigation="keyboardNavigationModeMemberName"/>

Property Value

A value of the enumeration. The default is Local.

Applies to

See also