次の方法で共有


方法: TextBox コントロールでタブ文字を有効にする

この例では、 TextBox コントロールでタブ文字を通常の入力として受け入れることを有効にする方法を示します。

TextBox コントロールでタブ文字を入力として受け入れできるようにするには、AcceptsTab属性を 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>

こちらも参照ください