この例では、 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>
こちらも参照ください
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET Desktop feedback