動作していないコンボボックスの唯一の部分が背景色です。私はすべてが黄色になりたい。しかし、倒れた部分はまだ灰色です。ComboBoxで背景色が動作しない理由
<ComboBox Height="25" Width="125" Background="Yellow">
<ComboBox.ItemContainerStyle>
<Style TargetType="ComboBoxItem">
<Setter Property="Background" Value="Yellow"/>
<Setter Property="BorderBrush" Value="Yellow"/>
</Style>
</ComboBox.ItemContainerStyle>
<ComboBoxItem Content="One"/>
<ComboBoxItem Content="Two"/>
<ComboBoxItem Content="Three"/>
</ComboBox>
重複http://stackoverflow.com/q/22695145/107625? –
[折りたたみ部分が*の場合、[WPFのComboBoxのToggleButtonのスタイルをエレガントにオーバーライドする](http://stackoverflow.com/questions/1799974/elegantly-override-style-of-comboboxs-togglebutton-in-wpf)の可能な複製ボタン。ドロップダウンリストの場合は、@UweKeimのコメントを参照してください。 – Sinatr