次の方法で共有


方法: 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>

関連項目