Création de l'UC Compte
continuous-integration/drone/push Build is passing Details

Navigator
Raphael LACOTE 2 years ago
parent fbd7694f58
commit d0d8597163

@ -6,7 +6,7 @@
StartupUri="MainWindow.xaml"> StartupUri="MainWindow.xaml">
<Application.Resources> <Application.Resources>
<conv:Func2WindowPartConverter x:Key="Func2WpConv"/> <!--<conv:Func2WindowPartConverter x:Key="Func2WpConv"/>-->
<Style x:Key="BorderRessource" TargetType="Border"> <Style x:Key="BorderRessource" TargetType="Border">
<Setter Property="BorderBrush" Value="#63A4FF"/> <Setter Property="BorderBrush" Value="#63A4FF"/>
@ -17,6 +17,15 @@
<Setter Property="Width" Value="175"/> <Setter Property="Width" Value="175"/>
</Style> </Style>
<Style x:Key="TitleBorder" TargetType="Border">
<Setter Property="BorderThickness" Value="2" />
<Setter Property="BorderBrush" Value="Black" />
<Setter Property="Margin" Value="20"/>
<Setter Property="CornerRadius" Value="5"/>
<Setter Property="Height" Value="30"/>
<Setter Property="Width" Value="175"/>
</Style>
<Style TargetType="UserControl" x:Key="ImageFondRessource"> <Style TargetType="UserControl" x:Key="ImageFondRessource">
<Setter Property="Background"> <Setter Property="Background">
<Setter.Value> <Setter.Value>
@ -38,6 +47,15 @@
<Setter Property="VerticalAlignment" Value="Center"/> <Setter Property="VerticalAlignment" Value="Center"/>
</Style> </Style>
<Style x:Key="TitreDePage" TargetType="TextBlock">
<Setter Property="HorizontalAlignment" Value="Center"/>
<Setter Property="VerticalAlignment" Value="Top"/>
<Setter Property="Background" Value="MediumPurple" />
<Setter Property="FontFamily" Value="Slab serif"/>
<Setter Property="FontSize" Value="20"/>
<Setter Property="FontWeight" Value="Bold"/>
</Style>
<Style TargetType="Button" x:Key="TransparentButtonRessource"> <Style TargetType="Button" x:Key="TransparentButtonRessource">
<Setter Property="Background" Value="Transparent" /> <Setter Property="Background" Value="Transparent" />
<Setter Property="TextBlock.TextAlignment" Value="Center" /> <Setter Property="TextBlock.TextAlignment" Value="Center" />
@ -72,17 +90,7 @@
<Setter Property="VerticalAlignment" Value="Center"/> <Setter Property="VerticalAlignment" Value="Center"/>
</Style> </Style>
<Style TargetType="TextBlock" x:Key="TitreDePage">
<Setter Property="HorizontalAlignment" Value="Center"/>
<Setter Property="VerticalAlignment" Value="Top"/>
<Setter Property="Background" Value="Brown" />
</Style>
<Style TargetType="TextBlock" x:Key="AffichageAuMilieu">
<Setter Property="HorizontalAlignment" Value="Center"/>
<Setter Property="VerticalAlignment" Value="Center"/>
<Setter Property="Background" Value="Brown" />
</Style>
<Style x:Key="OrangeButtonRessource" TargetType="Button"> <Style x:Key="OrangeButtonRessource" TargetType="Button">

@ -9,13 +9,16 @@
Style="{StaticResource ImageFondRessource}"> Style="{StaticResource ImageFondRessource}">
<DockPanel> <DockPanel>
<Border Style="{StaticResource BorderRessource}" Height="33" DockPanel.Dock="Top"> <Border Style="{StaticResource TitleBorder}" DockPanel.Dock="Top">
<TextBlock Text="Nom d'utilisateur" Style="{StaticResource TitreDePage}"/> <TextBlock Text="Nom d'utilisateur" Style="{StaticResource TitreDePage}"/>
<!--<TextBlock Text="Compte courant" Style="{StaticResource AffichageAuMilieu}"/>-->
</Border> </Border>
<Button Margin="20" DockPanel.Dock="Bottom" Style="{StaticResource GreenButtonRessource}"> <Button DockPanel.Dock="Bottom" Style="{StaticResource GreenButtonRessource}" Height="25" Width="170" Margin="20">
<TextBlock Text="Modifier votre solde"/> <TextBlock Text="Modifier votre solde" Style="{StaticResource TextBlockRessource}"/>
</Button> </Button>
<Border DockPanel.Dock="Bottom" Height="25" Width="250">
<TextBlock Text="Compte courant : ???" Style="{StaticResource TextBlockRessource}" FontSize="16" FontWeight="DemiBold"/>
</Border>
</DockPanel> </DockPanel>

Loading…
Cancel
Save