You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
1.0 KiB

<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
<FontFamily x:Key="Police1">Candara Light</FontFamily>
<Brush x:Key="Couleur1">CadetBlue</Brush>
<Brush x:Key="Couleur2">PowderBlue</Brush>
<Brush x:Key="Couleur3">AliceBlue</Brush>
<Style TargetType="ComboBox">
<Setter Property="FontStyle" Value="Italic"/>
<Setter Property="Margin" Value="5"/>
<Setter Property="FontFamily" Value="{StaticResource Police1}"/>
<Setter Property="Foreground" Value="{StaticResource Couleur1}"/>
</Style>
<Style TargetType="Button">
<Setter Property="BorderBrush" Value="{StaticResource Couleur3}"/>
<Setter Property="BorderThickness" Value="2"/>
<Setter Property="Background" Value="{StaticResource Couleur2}"/>
<Setter Property="Foreground" Value="{StaticResource Couleur3}"/>
<Setter Property=""
</Style>
</ResourceDictionary>