折叠堆栈面板时从网格中删除空间

时间:2015-01-14 19:37:37

标签: c# wpf xaml grid

我有一个应用程序,我在网格中显示堆栈面板行。用户可以将堆栈面板的行隐藏到"清理"网格,只查看/编辑他们想要的东西,想法是折叠分隔符之间的堆栈面板和关闭之间的空间。

当我将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();
    }

1 个答案:

答案 0 :(得分:1)

您可以使用RowsDefinitions并将每个RowDefinition Height属性设为Auto,然后将StackPanel添加到这些行