Control.IsTabStop 속성
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
컨트롤이 탭 탐색에 포함되는지 여부를 나타내는 값을 가져오거나 설정합니다.
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
속성 값
컨트롤이 탭 탐색에 포함되면 true
이고, 그렇지 않으면 false
입니다. 기본값은 true
입니다.
- 특성
예제
다음 예제에서는 설정 하는 방법의 IsTabStop 속성 및 컨트롤에 포함 되어 있는지 여부를 테스트 하는 방법에 대 한 탭 탐색 합니다.
<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
설명
하는 경우 IsTabStop 는 false
, 컨트롤 탭 탐색에서 제외 됩니다.
종속성 속성 정보
식별자 필드 | IsTabStopProperty |
메타 데이터 속성 설정 true |
없음 |