방법: TextBox 컨트롤에서 탭 문자 사용
이 예제에서는 TextBox 컨트롤에서 탭 문자를 일반 입력으로 수락하도록 설정하는 방법을 보여 줍니다.
예제
탭 문자를 TextBox 컨트롤에서 입력으로 허용하려면 AcceptsTab 특성을 true로 설정합니다.
<TextBox AcceptsTab="True">
If the AcceptsTab element is "True", the TextBox control will accept tab characters as regular input when the TAB key is pressed.
If AcceptsTab is "False" (the default), pressing TAB moves the focus to the next focusable control.
</TextBox>
참고 항목
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
.NET Desktop feedback