更改背景颜色与颜色渐变(Change background color with color gra

2019-10-17 00:05发布

我想从我的组合框改变背景颜色。 但我想保留的颜色渐变。

我已经使用此代码尝试,但仍然没有得到效果。

<Setter Property="Background" Value="White"/> <!-- It's only white :( -->

Answer 1:

<ComboBox>
    <ComboBox.Background>
        <LinearGradientBrush EndPoint="0,1">
            <GradientStopCollection>
                <GradientStop Color="Blue" Offset="0.5" />
                <GradientStop Color="White" Offset="0.5" />
            </GradientStopCollection>
        </LinearGradientBrush>
    </ComboBox.Background>
</ComboBox>

这将改变背景颜色。 改变颜色和偏移量来获得您想要的结果。



文章来源: Change background color with color gradients