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.
ConsEco/Code/IHM/UCCompte.xaml

23 lines
1.0 KiB

<UserControl x:Class="IHM.UCCompte"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:local="clr-namespace:IHM"
mc:Ignorable="d"
d:DesignHeight="350" d:DesignWidth="600"
Style="{StaticResource ImageFondRessource}">
<DockPanel>
<Border Style="{StaticResource BorderRessource}" Height="33" DockPanel.Dock="Top">
<TextBlock Text="Nom d'utilisateur" Style="{StaticResource TitreDePage}"/>
<!--<TextBlock Text="Compte courant" Style="{StaticResource AffichageAuMilieu}"/>-->
</Border>
<Button Margin="20" DockPanel.Dock="Bottom" Style="{StaticResource GreenButtonRessource}">
<TextBlock Text="Modifier votre solde"/>
</Button>
</DockPanel>
</UserControl>