学海无涯

导航

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>

  

posted on 2023-01-02 11:02  宁静致远.  阅读(30)  评论(0编辑  收藏  举报