Control.IsTabStop Property

Definition

Gets or sets a value that indicates whether a control is included in tab navigation.

public:
 property bool IsTabStop { bool get(); void set(bool value); };
[System.ComponentModel.Bindable(true)]
public bool IsTabStop { get; set; }
[<System.ComponentModel.Bindable(true)>]
member this.IsTabStop : bool with get, set
Public Property IsTabStop As Boolean

Property Value

true if the control is included in tab navigation; otherwise, false. The default is true.

Attributes

Examples

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>
void IsTabStop(object sender, RoutedEventArgs e)
{
    if (btn13.IsTabStop == true)
    {
        btn13.Content = "Control is a tab stop.";
    }
}
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

Remarks

If IsTabStop is false, the control is excluded from tab navigation.

Dependency Property Information

Identifier field IsTabStopProperty
Metadata properties set to true None

Applies to