我想从我的组合框改变背景颜色。 但我想保留的颜色渐变。
我已经使用此代码尝试,但仍然没有得到效果。
<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>
这将改变背景颜色。 改变颜色和偏移量来获得您想要的结果。