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