Comment : activer des tabulations dans un contrôle TextBox
Cet exemple indique comment activer l'acceptation de tabulations en tant qu'entrée normale dans un contrôle TextBox.
Exemple
Pour activer l'acceptation de tabulations en tant qu'entrée dans un contrôle TextBox, définissez l'attribut AcceptsTab sur la valeur 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>