WPF编程,TextBox支持回车换行以及滚动条的设置方法
设置换行:
TextBox的AcceptsReturn属性设置设为True,
将 TextWrapping 属性设置为 Wrap 会导致输入的文本在到达 TextBox 控件的边缘时换至新行,必要时会自动扩展
TextBox 控件以便为新行留出空间。
将 AcceptsReturn 属性设置为 true 会导致在按 Return 键时插入新行,必要时会再次自动扩展 TextBox
以便为新行留出空间。
<TextBox Margin="5" TextWrapping="Wrap" AcceptsReturn="True" x:Name="tb1"></TextBox>
设置滚动条:
将TextBox放入ScrollViewer
例如:
<ScrollViewer VerticalScrollBarVisibility="Auto" Grid.Row="5" > <StackPanel> <TextBox Margin="5" TextWrapping="Wrap" AcceptsReturn="True" x:Name="tb"></TextBox> </StackPanel> </ScrollViewer>