In my WPF app I just want to change the background color of the Combo box. I don\'t mean the dropdown, I want is just whatever item is selected a background is set. Like se
Just add the following to your ComboBox style :)
ComboBox
BasedOn="{StaticResource {x:Type ComboBox}}"
Example:
Believe me, it's probably the shortest way to do it... I don't see why we have to completely re-define the ComboBox template.