-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathComboBoxStyles.xaml
21 lines (21 loc) · 1.18 KB
/
ComboBoxStyles.xaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
<Style TargetType="{x:Type ComboBoxItem}">
<Setter Property="FontSize" Value="16"/>
<Setter Property="Height" Value="30"/>
<Setter Property="Padding" Value="5"/>
<Setter Property="VerticalAlignment" Value="Center"/>
<Setter Property="FontFamily" Value="Jetbrains Mono"/>
<Setter Property="BorderThickness" Value="0"/>
<Setter Property="Foreground" Value="{DynamicResource PrimaryTextColor}"/>
<Setter Property="Background" Value="{DynamicResource SecondaryBackground}"/>
</Style>
<Style x:Key="FormComboBox" TargetType="{x:Type ComboBox}">
<!--<Setter Property="BorderThickness" Value="0"/>-->
<Setter Property="Height" Value="40"/>
<Setter Property="FontSize" Value="16"/>
<Setter Property="FontFamily" Value="Jetbrains Mono"/>
<Setter Property="Foreground" Value="{DynamicResource PrimaryTextColor}"/>
<Setter Property="Background" Value="{DynamicResource SecondaryBackground}"/>
</Style>
</ResourceDictionary>