Partilhar via


Como habilitar caracteres de tabulação num controlo TextBox

Este exemplo mostra como habilitar a aceitação de caracteres de tabulação como entrada normal em um controle TextBox.

Exemplo

Para habilitar a aceitação de caracteres de tabulação como entrada em um controle TextBox, defina o atributo AcceptsTab como 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>

Ver também