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.
33 lines
1.6 KiB
33 lines
1.6 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>
|
|
<FontFamily x:Key="Police2">Candara</FontFamily>
|
|
<Brush x:Key="Couleur1">SlateGray</Brush>
|
|
<Brush x:Key="Couleur2">LightSlateGray</Brush>
|
|
<Brush x:Key="Couleur3">LightGray</Brush>
|
|
<Style TargetType="DockPanel" x:Key="Docky">
|
|
<Setter Property="Background" Value="{StaticResource Couleur3}"/>
|
|
</Style>
|
|
<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" x:Key="Button1">
|
|
<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="FontFamily" Value="{StaticResource Police1}"/>
|
|
</Style>
|
|
<Style TargetType="TextBlock">
|
|
<Setter Property="FontFamily" Value="{StaticResource Police1}"/>
|
|
</Style>
|
|
<Style TargetType="CheckBox">
|
|
<Setter Property="Foreground" Value="{StaticResource Couleur2}"/>
|
|
<Setter Property="BorderBrush" Value="{StaticResource Couleur2}"/>
|
|
</Style>
|
|
|
|
</ResourceDictionary> |