折叠堆栈面板时从网格中删除空间
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了折叠堆栈面板时从网格中删除空间相关的知识,希望对你有一定的参考价值。
我有一个应用程序,我在网格中显示堆栈面板行。用户可以隐藏堆栈面板的行以“清理”网格,并且只查看/编辑他们想要的内容,其目的是折叠分隔符之间的堆栈面板和关闭之间的空间。
当我将stackpanel设置为Visibility.Collapsed时,stackpanel消失但它们占用的空间仍然存在。
如何消除差距? (我添加了updatelayout,但这似乎没有做任何事情)
它之前的样子:Before
之后的样子:After
我的XAML:
<ScrollViewer Name="scroll" PanningMode="Both" Grid.Column="0" Grid.Row="1">
<ScrollViewer.Resources>
<sys:Double x:Key="{x:Static SystemParameters.VerticalScrollBarWidthKey}">50</sys:Double>
<sys:Double x:Key="{x:Static SystemParameters.VerticalScrollBarButtonHeightKey}">50</sys:Double>
</ScrollViewer.Resources>
<Grid x:Name="RecipeEditorCtrl" VerticalAlignment="Top">
</Grid>
</ScrollViewer>
我的C#:
...
int rowIndex = Grid.GetRow(CNtmp);
rowIndex++;
tmpCN = (CollectionNode)RecipeEditorCtrl.Children[rowIndex];
while (tmpCN.dataType.Text != "SEPERATOR")
{
tmpCN.Visibility = Visibility.Collapsed;
rowIndex++;
tmpCN = (CollectionNode)RecipeEditorCtrl.Children[rowIndex];
}
RecipeEditorCtrl.UpdateLayout();
}
答案
你可以使用RowsDefinitions
并将每个RowDefinition
Height
属性添加到Auto
然后将你的StackPanel
添加到那些行
以上是关于折叠堆栈面板时从网格中删除空间的主要内容,如果未能解决你的问题,请参考以下文章