Condividi tramite


Procedura: Abilitare i caratteri di tabulazioni in un controllo TextBox

In questo esempio si mostra come abilitare l'accettazione dei caratteri di tabulazione come input normale in un controllo TextBox.

Esempio

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

Vedere anche