Compartir a través de


Cómo: Habilitar caracteres de tabulación en un control TextBox

En este ejemplo se muestra cómo habilitar la aceptación de caracteres de tabulación como entrada normal en un TextBox control.

Ejemplo

Para habilitar la aceptación de caracteres de tabulación como entrada en un TextBox control, establezca el AcceptsTab atributo en 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>

Consulte también

  • Información general sobre TextBox
  • Información general sobre RichTextBox