WPF常用控件
<ImageBrush ImageSource="/background.png" Stretch="UniformToFill" Opacity="0.3"/>
background.png 属性->生成操作->资源
填充渐变颜色
<Grid> <Grid.Background> <LinearGradientBrush> <LinearGradientBrush.GradientStops> <GradientStop Offset="0.0" Color="Red"/> <GradientStop Offset="0.5" Color="Indigo"/> <GradientStop Offset="1" Color="Violet"/> </LinearGradientBrush.GradientStops> </LinearGradientBrush> </Grid.Background> </Grid>