我的项目要求是,网格背景中的图像,并希望在顶部和底部应用黑色渐变。请帮助我如何实现这一目标。
我的 XAML 如下:
<Grid Grid.Row="0" HorizontalAlignment="Stretch" Height="190" VerticalAlignment="Stretch" ShowGridLines="False" Margin="0,2,0,0">
<Grid.Background>
<ImageBrush Stretch="UniformToFill" Opacity="0.6">
<ImageBrush.ImageSource>
<BitmapImage CreateOptions="BackgroundCreation" UriSource="{Binding Banner}"></BitmapImage>
</ImageBrush.ImageSource>
</ImageBrush>
</Grid.Background>
.....
</Grid