1

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

在此处输入图像描述

我试过使用这段代码,但仍然没有得到效果。

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

1 回答 1

2
<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>

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

于 2012-07-11T12:15:24.923 回答