我有一个让我发疯的问题,我正在WPF中开展一个项目,我正在创建一个视图。
我正在设计一个包含“更多选项”部分的窗口,我甚至可以将此部分显示或隐藏。本节包含一个tabControl,其中包含一个TextBox,如下所示:
<TabControl Margin="10,156,12,39" Name="moreTabControl" Grid.Column="1">
<TabItem >
<Grid>
<TextBox Margin="6,6,8,28" Name="myTextBox" />
</Grid>
</TabItem>
</TabControl>
因此,在我所做的显示或隐藏“更多部分”的代码背后如下:
public partial class FilterView : System.Windows.Window
{
.....
// Window's height when "more" option are showed
private const int ShowMoreHeight = 386;
/// Window's height when "more" option are hidden
private const int ShowLessHeight = 186;
private bool showMore = false;
private void moreButton_Click(object sender, RoutedEventArgs e)
{
showMore = !showMore;
ResizeWindow();
}
private void ResizeWindow()
{
if (showMore)
{
moreTabControl.Visibility = System.Windows.Visibility.Visible;
moreButton.Content = "<< Less";
MinHeight = ShowMoreHeight;
Height = ShowMoreHeight;
}
else
{
moreTabControl.Visibility = System.Windows.Visibility.Collapsed;
moreButton.Content = "More >>";
MinHeight = ShowLessHeight;
Height = ShowLessHeight;
}
}
......
.....
}
一切顺利,直到我需要更改RichTextBox的TextBox :(当我运行程序并按“MoreButton”时,“more”部分显示为预期但容器窗口向右增长很多!
我只更改了此内容:<TextBox Margin="6,6,8,28" Name="myTextBox" />
:<RichTextBox Margin="6,6,8,28" Name="myRichTextBox" />
有谁知道发生了什么?
提前谢谢。
答案 0 :(得分:0)
我已经解决了我的问题:
事实证明,在我的XAML代码中,我的Window有一个名为SizeToContent
的属性设置为"WidthAndHeight"
,所以我将其更改为"Manual"
并为Width
建立了一个值和Height
手动。
希望这有助于其他正在经历类似事情的人。