0

这里的关键问题。就我而言,我为我的应用程序组装了以下代码。不幸的是,它在布局中产生了更大的问题。即使我们将 RowDefinitions 与 Auto 放在一起,它也不会考虑 RowHeight 并进入 Windows Phone 模拟器的底部。

    <Grid>
        <Grid>
            <Grid.RowDefinitions>
                <RowDefinition Height="*"/>
                <RowDefinition Height="Auto"/>
            </Grid.RowDefinitions>
            <Grid Grid.Row="0" x:Name="firstGrid" Tap="FirstGrid_OnTap"/>
            <Grid Grid.Row="1" Visibility="Collapsed">
                <Grid.ColumnDefinitions>
                    <ColumnDefinition Width="*"/>
                    <ColumnDefinition Width="*"/>
                </Grid.ColumnDefinitions>
                <Button Content="A"/>
                <Button Grid.Column="1" Content="B"/>
            </Grid>
        </Grid>
    </Grid>

在加载页面时,它会使用 ImageBrush 填充 firstGrid。因此,每当用户点击第一个网格时,它只会通过启用第二个网格的可见性向网格再插入一行。第二个网格将有几个按钮。当我看到第二个网格时我很惊讶,因为它隐藏在模拟器的底部。即使我进行了数百次不同的尝试,我也无法深入挖掘它实际存在的主要问题。任何帮助深表感谢。

4

1 回答 1

0

根据我的理解,您需要在代码中进行此更改,第一行应该是自动的,第二行是 *.

        <Grid.RowDefinitions>
            <RowDefinition Height="Auto"/>
            <RowDefinition Height="*"/>
        </Grid.RowDefinitions>
于 2013-03-01T09:59:04.163 回答