如何更改所选项目ComboBox的背景颜色?

时间:2018-06-11 08:35:49

标签: wpf xaml combobox

我想知道如何更改组合框中所选项目的背景颜色。目前,它只更改下拉列表中项目的背景颜色。我这是怎么做的。

  <ComboBox x:Name="ddlmaterial"  Grid.Column="1" Margin="0,10,0,0" VerticalAlignment="Top" HorizontalAlignment="Stretch">
            <ComboBox.ItemContainerStyle>
                <Style TargetType="ComboBoxItem">
                    <Setter Property="Foreground" Value="White"/>
                    <Setter Property="Background" Value="#FF333333"/>
                    <Setter Property="BorderBrush" Value="#FF333333"></Setter>

                </Style>
            </ComboBox.ItemContainerStyle>
        </ComboBox>

这是如何从具有浅灰色背景的列表中选择项目。我想使字体颜色和背景颜色与下拉列表完全相同。 enter image description here

我已经尝试了重复链接中给出的所有解决方案,但它不起作用。当我改变背景属性时,我根本不明白为什么颜色没有改变。

0 个答案:

没有答案