如何:建立多行 TextBox 控制項
此範例顯示如何使用 Extensible Application Markup Language (XAML) 來定義會自動展開以容納多行文字的 TextBox 控制項。
範例
將 TextWrapping 屬性設定為 Wrap 會導致輸入的文字在到達 TextBox 控制項邊緣時換行到新行,並視需要自動展開 TextBox 控制項以包含新行的空間。
將 AcceptsReturn 屬性設定為 true 會導致按下 RETURN 鍵時插入新行,並視需要再次自動展開 TextBox 以包含新行的空間。
VerticalScrollBarVisibility 屬性會將捲軸新增至 TextBox,因此,如果 TextBox 超出其括住框架或視窗的大小,則可以捲動 TextBox 的內容。
<TextBox
Name="tbMultiLine"
TextWrapping="Wrap"
AcceptsReturn="True"
VerticalScrollBarVisibility="Visible"
>
This TextBox will allow the user to enter multiple lines of text. When the RETURN key is pressed,
or when typed text reaches the edge of the text box, a new line is automatically inserted.
</TextBox>