0

我想在 Windows Phone 应用程序中以不同大小的网格显示图像。就像 Windows Phone 应用程序中的以下图像格式

谢谢

在此处输入图像描述

4

1 回答 1

0

使用网格

<Grid>
    <Grid.RowDefinitions>
        <RowDefinition />
        <RowDefinition />
    </Grid.RowDefinitions>
    <Grid.ColumnDefinitions>
        <ColumnDefinition />
        <ColumnDefinition />
    </Grid.ColumnDefinitions>
    <Rectangle Grid.Row="0"
               Grid.Column="0"
               Grid.ColumnSpan="2" />
    <Rectangle Grid.Row="1" Grid.Column="0" />
    <Rectangle Grid.Row="1" Grid.Column="1" />
</Grid>

添加矩形以模拟您放置的屏幕截图 - 您将使用所需的控件。我明确地将 Grid.Row 和 Grid.Column 设置为 0 以强调正在发生的事情。

于 2013-04-11T10:08:51.937 回答