<UserControl.Resources>
<Style TargetType="{x:Type ComboBox}">
<Setter Property="Background" Value="{DynamicResource PanelBackground}" />
<Setter Property="Foreground" Value="{DynamicResource TextColor}" />
<Setter Property="BorderBrush" Value="{DynamicResource BorderBrush}" />
</Style>
<Style TargetType="{x:Type ComboBoxItem}">
<Setter Property="Background" Value="{DynamicResource PanelBackground}" />
<Setter Property="Foreground" Value="{DynamicResource TextColor}" />
<Setter Property="BorderBrush" Value="{DynamicResource BorderBrush}" />
<Setter Property="Padding" Value="4,2" />
<Style.Triggers>
<Trigger Property="IsMouseOver" Value="True">
<Setter Property="Background" Value="{DynamicResource HoverColor}" />
</Trigger>
<Trigger Property="IsSelected" Value="True">
<Setter Property="Background" Value="{DynamicResource PanelBackground}" />
<Setter Property="Foreground" Value="{DynamicResource TextColor}" />
</Trigger>
</Style.Triggers>
</Style>
<UserControl.Resources>
<Style TargetType="{x:Type ComboBox}">
<Setter Property="Background" Value="{DynamicResource PanelBackground}" />
<Setter Property="Foreground" Value="{DynamicResource TextColor}" />
<Setter Property="BorderBrush" Value="{DynamicResource BorderBrush}" />
</Style>
<Style TargetType="{x:Type ComboBoxItem}">
<Setter Property="Background" Value="{DynamicResource PanelBackground}" />
<Setter Property="Foreground" Value="{DynamicResource TextColor}" />
<Setter Property="BorderBrush" Value="{DynamicResource BorderBrush}" />
<Setter Property="Padding" Value="4,2" />
<Style.Triggers>
<Trigger Property="IsMouseOver" Value="True">
<Setter Property="Background" Value="{DynamicResource HoverColor}" />
</Trigger>
<Trigger Property="IsSelected" Value="True">
<Setter Property="Background" Value="{DynamicResource PanelBackground}" />
<Setter Property="Foreground" Value="{DynamicResource TextColor}" />
</Trigger>
</Style.Triggers>
</Style>