我有我正在处理的项目,需要将图像设置为网格上的背景。我可以设置图像,但它没有覆盖网格的整个宽度和高度。
下面是我的 XAML。
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="*"/>
<RowDefinition Height="*"/>
<RowDefinition Height="*"/>
</Grid.RowDefinitions>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="*"/>
<ColumnDefinition Width="*"/>
<ColumnDefinition Width="*"/>
</Grid.ColumnDefinitions>
<Grid.Background>
<ImageBrush ImageSource="Images/pt.png" Stretch="UniformToFill"/>
</Grid.Background>
</Grid>
我怎样才能使它覆盖网格的整个宽度和高度?提前感谢您的帮助。