parent
809a6d9bd1
commit
ee7d50c60b
@ -0,0 +1,8 @@
|
|||||||
|
using System;
|
||||||
|
|
||||||
|
namespace Ressources
|
||||||
|
{
|
||||||
|
public class Class1
|
||||||
|
{
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,21 @@
|
|||||||
|
<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}"/>
|
||||||
|
</Style>
|
||||||
|
|
||||||
|
</ResourceDictionary>
|
@ -0,0 +1,8 @@
|
|||||||
|
<Project Sdk="Microsoft.NET.Sdk">
|
||||||
|
|
||||||
|
<PropertyGroup>
|
||||||
|
<TargetFramework>net5.0-windows</TargetFramework>
|
||||||
|
<UseWPF>true</UseWPF>
|
||||||
|
</PropertyGroup>
|
||||||
|
|
||||||
|
</Project>
|
Loading…
Reference in new issue