다음을 통해 공유


방법: 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>

참고 항목