如何:在 TextBox 控件中启用制表符

更新:2007 年 11 月

本示例演示如何将制表符接受为 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>

请参见

概念

TextBox 概述

RichTextBox 概述