Control.TabIndex Property
.NET Framework 4.6 and 4.5
Gets or sets a value that determines the order in which elements receive focus when the user navigates through controls by using the TAB key.
Namespace: System.Windows.Controls
Assembly: PresentationFramework (in PresentationFramework.dll)
XMLNS for XAML: http://schemas.microsoft.com/winfx/2006/xaml/presentation, http://schemas.microsoft.com/netfx/2007/xaml/presentation
<object TabIndex="int" .../>
Property Value
Type: System.Int32A value that determines the order of logical navigation for a device. The default value is Int32.MaxValue.
The following example sets the tab index of three buttons.
<Button Name="btn9" BorderThickness="5.0"
Click="ChangeBorderThickness" TabIndex="2">
BorderThickness
</Button>
<Button Name="btn10" FontStretch ="Condensed"
Click="ChangeFontStretch" TabIndex="3">
FontStretch
</Button>
<Button Name="btn11" Padding = "5"
Click="ChangePadding" TabIndex="1">
Padding
</Button>
Show: