Share via


Procedura: attivare i caratteri di tabulazione in un controllo TextBox

In questo esempio viene illustrato come abilitare l'accettazione dei caratteri di tabulazioni come input normale in un TextBox controllo .

Esempio

Per abilitare l'accettazione dei caratteri di tabulazioni come input in un TextBox controllo, impostare l'attributo AcceptsTabsu 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>

Vedi anche