我想从我的组合框中更改背景颜色。但我想保留颜色渐变。
我试过使用这段代码,但仍然没有得到效果。
<Setter Property="Background" Value="White"/> <!-- It's only white :( -->
我想从我的组合框中更改背景颜色。但我想保留颜色渐变。
我试过使用这段代码,但仍然没有得到效果。
<Setter Property="Background" Value="White"/> <!-- It's only white :( -->
<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>
这将改变背景颜色。更改颜色和偏移以获得您想要的结果。