WPF中是否有RowSpan =“All”?

时间:2011-01-11 22:32:46

标签: wpf grid-layout

我在网格中的3行中创建GridSplitter,如下所示:

<GridSplitter Grid.Row="0" Grid.Column="1" Background="Yellow"
              HorizontalAlignment="Stretch" VerticalAlignment="Stretch"
              Width="Auto" Height="Auto" ResizeDirection="Columns"
              Grid.RowSpan="3" ...

但是,可以想象我可能会在以后的阶段向我的网格添加另一行,而且我并不想回去更新所有的行扫描。

我的第一个猜测是Grid.RowSpan="*",但这并没有编译。

3 个答案:

答案 0 :(得分:33)

一个简单的解决方案:

<!-- RowSpan == Int32.MaxValue -->
<GridSplitter Grid.Row="0"
              Grid.Column="1"
              Grid.RowSpan="2147483647" />

答案 1 :(得分:16)

您可以绑定到RowDefinitions.Count,但在手动添加行时需要更新绑定。

编辑:实际上只有半手动 XAML:

<StackPanel Orientation="Vertical">
    <Grid Name="GridThing">
        <Grid.ColumnDefinitions>
            <ColumnDefinition/>   
            <ColumnDefinition/>         
            </Grid.ColumnDefinitions>
            <Grid.RowDefinitions>
                <RowDefinition />
            <RowDefinition />   
            </Grid.RowDefinitions>
            <Grid.Children>
                <Button Content="TopRight" Grid.Row="0" Grid.Column="1"/>
                <Button Content="LowerRight" Grid.Row="1" Grid.Column="1"/>
            <Button Content="Span Rows" Name="BSpan" Grid.RowSpan="{Binding RelativeSource={RelativeSource AncestorType=Grid}, Path=RowDefinitions.Count, Mode=OneWay}"/>
        </Grid.Children>
        </Grid>
    <Button Click="Button_Click" Content="Add Row" />
</StackPanel>

代码:

    private void Button_Click(object sender, RoutedEventArgs e)
    {
        GridThing.RowDefinitions.Add(new RowDefinition() { Height = new GridLength(20) });
        foreach (FrameworkElement child in GridThing.Children)
        {
            BindingExpression exp = child.GetBindingExpression(Grid.RowSpanProperty);
            if (exp != null)
            {
                exp.UpdateTarget();
            }
        }
    }

答案 2 :(得分:1)

Grid控件提供了开箱即用的功能。可以想象,您可以实现MarkupExtension或其他一些技巧来启用此功能。