C# WPF style default combobox

Всем привет, хочу изменить цвет дефолтного comboBox. Когда я добавляю ControlTemplate у меня перестают отображаться данные в самом comboBox'e :(

Сам ComboBox

<ComboBox Grid.Row="4"
                  Text="{Binding TypeQuestion, UpdateSourceTrigger=PropertyChanged}"
                  ItemsSource="{Binding Source={localConvert:EnumBindingSource {x:Type localConvert:TypeQuestions}}}">
            <ComboBox.Style>
                <Style TargetType="ComboBox">
                    <Setter Property="Foreground" Value="Black"/>
                    <Setter Property="FontSize" Value="14"/>
                    <Setter Property="Background" Value="#93CCEA"/>
                    <Setter Property="Template">
                        <Setter.Value>
                            <ControlTemplate>
                                <Border Background="{TemplateBinding Background}">
                                    
                                </Border>
                            </ControlTemplate>
                        </Setter.Value>
                    </Setter>
                </Style>
            </ComboBox.Style>
            <ComboBox.ItemTemplate>
                <DataTemplate>
                    <TextBlock Text="{Binding Path=., Converter={StaticResource ConvertToString}}"/>
                </DataTemplate>
            </ComboBox.ItemTemplate>
        </ComboBox>
    ```

 

Ответы (0 шт):