Control.IsTabStop Proprietà

Definizione

Ottiene o imposta un valore che indica se un controllo è incluso nella navigazione tramite tabulazione.

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

Valore della proprietà

true se il controllo è incluso nella navigazione tramite tabulazione. In caso contrario, false. Il valore predefinito è true.

Attributi

Esempio

Nell'esempio seguente viene illustrato come impostare la IsTabStop proprietà e come verificare se un controllo è incluso nel riquadro di spostamento tramite tabulazioni.

<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

Commenti

Se IsTabStop è false, il controllo viene escluso dalla struttura di spostamento tramite tabulazioni.

Informazioni proprietà di dipendenza

Campo Identificatore IsTabStopProperty
Proprietà dei metadati impostate su true Nessuno

Si applica a