1

これは私のXAMLデザインです

<Grid x:Name="ContentPanel2" Grid.Row="1" Background="Black" Height="440" Width="440">
            <Grid.RowDefinitions>
                <RowDefinition Height="*" />
                <RowDefinition Height="*" />
                <RowDefinition Height="*" />
            </Grid.RowDefinitions>
            <Grid.ColumnDefinitions>
                <ColumnDefinition Width="*" />
                <ColumnDefinition Width="*" />
                <ColumnDefinition Width="*" />
            </Grid.ColumnDefinitions>

            <Border BorderThickness="0" Grid.Row="0"  Grid.Column="0" Background="White" />
            <Border BorderThickness="0" Grid.Row="0"  Grid.Column="1"  Background="White"  />
            <Border BorderThickness="0" Grid.Row="0"  Grid.Column="2"   Background="White"  />

            <Border BorderThickness="0" Grid.Row="1"  Grid.Column="0" Background="White" />
            <Border BorderThickness="0" Grid.Row="1"  Grid.Column="1"  Background="White"  />
            <Border BorderThickness="0" Grid.Row="1"  Grid.Column="2"   Background="White"  />

            <Border BorderThickness="0" Grid.Row="2"  Grid.Column="0" Background="White" />
            <Border BorderThickness="0" Grid.Row="2"  Grid.Column="1"  Background="White"  />
            <Border BorderThickness="0" Grid.Row="2"  Grid.Column="2"   Background="White"  />
        </Grid>

これが画像です


wvga image WVGA画像
wxga image WXGAイメージ
720pimage 720 P
これは、解像度(wvga、wxga、720p)ごとに異なって表示されます。なぜこの振る舞いが起こるのか誰もが知っていますか?この問題を解決するにはどうすればよいですか?

4

1 に答える 1

0

これは、分数ピクセルがどのように機能するかに関する既知の問題です(別のStackOverflowの質問があったと思いますが、見つかりませんでした)。グリッドの背景がアイテム間の「ギャップ」を通して表示されます。

グリッドの背景を作成することで修正できますWhite

于 2013-01-30T13:26:28.147 に答える