Control.IsTabStop Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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)
{
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
Item | Value |
---|---|
Identifier field | IsTabStopProperty |
Metadata properties set to true |
None |
Applies to
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
.NET