ページに次の GridView があります。
<GridView Background="Black">
<GridView.ItemsPanel>
<ItemsPanelTemplate>
<Grid>
<Grid.RowDefinitions>
<RowDefinition/>
<RowDefinition/>
</Grid.RowDefinitions>
<Grid.ColumnDefinitions>
<ColumnDefinition/>
<ColumnDefinition/>
</Grid.ColumnDefinitions>
</Grid>
</ItemsPanelTemplate>
</GridView.ItemsPanel>
<GridView.Items>
<TextBlock Grid.Row="0" Grid.Column="0" Text="Hello"/>
<TextBlock Grid.Row="1" Grid.Column="1" Text="there"/>
</GridView.Items>
</GridView>
これにより、「Hello」と「There」の両方が左上の象限に重ねて表示されます。左上の象限に「Hello」という単語があり、右下の象限に「そこに」という単語があるはずです。
私は何が欠けていますか?