I need to change a color in ComboBox WPF.For this I try override the template. But if I do this
<ComboBox.Template>
<ControlTemplate>
<Themes:SystemDropShadowChrome Color="Red"/>
</ControlTemplate>
</ComboBox.Template>
It's just made a Red Cube that do nothing.All other properties of ComboBox are losted.So how to override template to change color and save properties of ComboBox?