阻止WPF TextBox增长

时间:2012-05-16 22:15:50

标签: wpf textbox

我花了两个小时研究如何避免在输入长文本时我的WPF TextBox控件增长,但我无法做到,即使我已经阅读了一些关于它的答案,如下所示: / p>

stopping-wpf-textbox-from-growing-with-text

wpf-allow-textbox-to-be-resized-but-not-to-grow-on-user-input

wpf-how-to-stop-textbox-from-autosizing

我的代码如下:

<Grid>
      <TextBox Margin="6,6,8,28" Name="textBox1" AcceptsTab="True" TextWrapping="Wrap" VerticalScrollBarVisibility="Visible" AcceptsReturn="True"/>
      <CheckBox Content="Case sensitive" HorizontalAlignment="Left" Margin="7,0,0,2" Name="checkBox1" Height="16" VerticalAlignment="Bottom" />
</Grid>

我尝试过的一件事是:

MaxWidth={Binding ElementName=MyGrid, Path=ActualWidth} 

但它对我不起作用。

我还尝试将以下属性添加到网格中:

ScrollViewer.HorizontalScrollBarVisibility="Disabled"

或者

<Border x:Name="b" Grid.Column="1"/>
<TextBox Width="{Binding ActualWidth, ElementName=b}" ....... />

但它也没有用。

当用户拉伸窗口时,我需要控制增长,而不是在插入长文本时增长。

对于我可能会尝试的这个问题你有不同的答案吗?

更新<!/强>

我注意到一些非常奇怪的事情:如果我手动拉伸窗口,文本框会在插入长文本时停止增长。没关系。但是我需要在每次运行程序时不必拉伸窗口来实现这一目标

2 个答案:

答案 0 :(得分:0)

删除TextBox边框并将其放入ScrollViewer。

答案 1 :(得分:0)

尝试下一步:

<ScrollViewer MaxHeight={Binding ElementName=MyGrid, Path=ActualWidth} BorderThickness="0">                    
      <TextBox Margin="6,6,8,28" Name="textBox1" AcceptsTab="True" TextWrapping="Wrap" AcceptsReturn="True"/>          
</ScrollViewer>