您可以使用 TextBox 来解决问题:当您设置 AcceptReturn=true 时,TextBox 将随着您添加新的文本行而增长。
是否可以对 RichTextBox 做同样的事情?
我在 WPF 中这样做
是的。默认情况下,RichTextBox
接受return
并将相应地增长。例如,这RichTextBox
将增长:
<Window x:Class="stackoverflow___rich_text_box___accepts_return.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="MainWindow" Height="350" Width="525">
<StackPanel>
<RichTextBox/>
</StackPanel>
</Window>
你必须这样做:
<RichTextBox AcceptsReturn="False"/>
让它不增长。