Gewusst wie: Aktivieren von Tabstoppzeichen in einem TextBox-Steuerelement

In diesem Beispiel wird gezeigt, wie sie die Akzeptanz von Registerkartenzeichen als normale Eingabe in einem TextBox Steuerelement aktivieren.

Beispiel

Um die Akzeptanz von Registerkartenzeichen als Eingabe in einem TextBox Steuerelement zu aktivieren, legen Sie das AcceptsTab Attribut auf true fest.

<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>

Weitere Informationen