Gets or sets a value that indicates whether a control is included in tab navigation. This is a dependency property.
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
Visual Basic (Declaration)
<BindableAttribute(True)> _
Public Property IsTabStop As Boolean
Dim instance As Control
Dim value As Boolean
value = instance.IsTabStop
instance.IsTabStop = value
[BindableAttribute(true)]
public bool IsTabStop { get; set; }
[BindableAttribute(true)]
public:
property bool IsTabStop {
bool get ();
void set (bool value);
}
public function get IsTabStop () : boolean
public function set IsTabStop (value : boolean)
<object IsTabStop="bool" .../>
Property Value
Type:
System..::.Boolean
true if the control is included in tab navigation; otherwise, false. The default is true.
Dependency Property Information
If IsTabStop is false, the control is excluded from tab navigation.
The following example shows how to set the IsTabStop property and how to test whether a control is included in tab navigation.
<Button Name="btn13" IsTabStop="true" Click="IsTabStop">
IsTabStop
</Button>
Private Sub IsTabStop(ByVal Sender As Object, ByVal e As RoutedEventArgs)
If (btn13.IsTabStop = True) Then
btn13.Content = "Control is a tab stop."
End If
End Sub
void IsTabStop(object sender, RoutedEventArgs e)
{
if (btn13.IsTabStop == true)
{
btn13.Content = "Control is a tab stop.";
}
}
Windows 7, Windows Vista, Windows XP SP2, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003
The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
.NET Framework
Supported in: 3.5, 3.0
Reference
Other Resources