@ -0,0 +1,16 @@
|
|||||||
|
<UserControl x:Class="IHM.UCAjouterBanque"
|
||||||
|
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="450" d:DesignWidth="800"
|
||||||
|
Style="{StaticResource ImageFondRessource}">
|
||||||
|
<DockPanel>
|
||||||
|
<TextBlock Text="A faire" FontSize="40"/>
|
||||||
|
<Button Click="Button_Click_Retour" Style="{StaticResource GreenButtonRessource}">
|
||||||
|
<TextBlock Text="Retour"/>
|
||||||
|
</Button>
|
||||||
|
</DockPanel>
|
||||||
|
</UserControl>
|
@ -0,0 +1,16 @@
|
|||||||
|
<UserControl x:Class="IHM.UCAjouterCompte"
|
||||||
|
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="450" d:DesignWidth="800"
|
||||||
|
Style="{StaticResource ImageFondRessource}">
|
||||||
|
<DockPanel>
|
||||||
|
<TextBlock Text="A FAIRE" FontSize="40"/>
|
||||||
|
<Button Click="Button_Click_Retour" Style="{StaticResource GreenButtonRessource}">
|
||||||
|
<TextBlock Text="Retour"/>
|
||||||
|
</Button>
|
||||||
|
</DockPanel>
|
||||||
|
</UserControl>
|
@ -0,0 +1,16 @@
|
|||||||
|
<UserControl x:Class="IHM.UCAjouterEcheance"
|
||||||
|
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="450" d:DesignWidth="800"
|
||||||
|
Style="{StaticResource ImageFondRessource}">
|
||||||
|
<DockPanel>
|
||||||
|
<TextBlock Text="A FAIRE" FontSize="40"/>
|
||||||
|
<Button Click="Button_Click_Retour" Style="{StaticResource GreenButtonRessource}">
|
||||||
|
<TextBlock Text="Retour"/>
|
||||||
|
</Button>
|
||||||
|
</DockPanel>
|
||||||
|
</UserControl>
|
@ -0,0 +1,16 @@
|
|||||||
|
<UserControl x:Class="IHM.UCAjouterPlanification"
|
||||||
|
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="450" d:DesignWidth="800"
|
||||||
|
Style="{StaticResource ImageFondRessource}">
|
||||||
|
<DockPanel>
|
||||||
|
<TextBlock Text="A FAIRE" FontSize="40"/>
|
||||||
|
<Button Click="Button_Click_Retour" Style="{StaticResource GreenButtonRessource}">
|
||||||
|
<TextBlock Text="Retour"/>
|
||||||
|
</Button>
|
||||||
|
</DockPanel>
|
||||||
|
</UserControl>
|
@ -0,0 +1,41 @@
|
|||||||
|
<UserControl x:Class="IHM.UCBienvenue"
|
||||||
|
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="450" d:DesignWidth="800"
|
||||||
|
Style="{StaticResource ImageFondRessource}">
|
||||||
|
<DockPanel>
|
||||||
|
<TextBlock Style="{StaticResource TitreDePage}" >Bienvenue sur Cons'Eco</TextBlock>
|
||||||
|
<Image Source="./images/logo.png" DockPanel.Dock="Top" Height="100" />
|
||||||
|
|
||||||
|
<TextBlock Foreground="Black" FontSize="15" HorizontalAlignment="Center" DockPanel.Dock="Top">
|
||||||
|
La première application d'aide à la gestion de budget personnel ou en entreprise
|
||||||
|
</TextBlock>
|
||||||
|
|
||||||
|
<Grid DockPanel.Dock="Bottom">
|
||||||
|
<Grid.ColumnDefinitions>
|
||||||
|
<ColumnDefinition/>
|
||||||
|
<ColumnDefinition/>
|
||||||
|
</Grid.ColumnDefinitions>
|
||||||
|
<StackPanel>
|
||||||
|
<TextBlock HorizontalAlignment="Center" Margin="50" FontSize="15">
|
||||||
|
Vous pouvez créer un compte
|
||||||
|
</TextBlock>
|
||||||
|
<Button Click="Button_Click_Inscription" Style="{StaticResource GreenButtonRessource}" Height="30" Width="100">
|
||||||
|
<TextBlock Text="Inscription"/>
|
||||||
|
</Button>
|
||||||
|
</StackPanel>
|
||||||
|
<StackPanel Grid.Column="1">
|
||||||
|
<TextBlock HorizontalAlignment="Center" Margin="50" FontSize="15">
|
||||||
|
Ou vous connecter si vous en possédée déjà un
|
||||||
|
</TextBlock>
|
||||||
|
<Button Click="Button_Click_Connexion" Style="{StaticResource GreenButtonRessource}" Height="30" Width="100">
|
||||||
|
<TextBlock Text="Connexion"/>
|
||||||
|
</Button>
|
||||||
|
</StackPanel>
|
||||||
|
</Grid>
|
||||||
|
</DockPanel>
|
||||||
|
</UserControl>
|
@ -0,0 +1,42 @@
|
|||||||
|
<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="450" d:DesignWidth="800"
|
||||||
|
Style="{StaticResource ImageFondRessource}">
|
||||||
|
|
||||||
|
<DockPanel>
|
||||||
|
<StackPanel DockPanel.Dock="Top">
|
||||||
|
|
||||||
|
<TextBlock Style="{StaticResource TitreDePage}" >Compte</TextBlock>
|
||||||
|
|
||||||
|
<StackPanel DockPanel.Dock="Left" Orientation="Horizontal" HorizontalAlignment="Center">
|
||||||
|
<Button Click="Button_Click_Ajouter_Banque" Style="{StaticResource GreenButtonRessource}" Height="25" Width="150" Margin="20">
|
||||||
|
<TextBlock Text="Ajouter une banque" Style="{StaticResource TextBlockRessource}"/>
|
||||||
|
</Button>
|
||||||
|
<Button Click="Button_Click_Supprimer_Banque" Style="{StaticResource GreenButtonRessource}" Height="25" Width="150" Margin="20">
|
||||||
|
<TextBlock Text="Supprimer une banque" Style="{StaticResource TextBlockRessource}"/>
|
||||||
|
</Button>
|
||||||
|
<Button Click="Button_Click_Ajouter_Compte" Style="{StaticResource GreenButtonRessource}" Height="25" Width="150" Margin="20">
|
||||||
|
<TextBlock Text="Ajouter un compte" Style="{StaticResource TextBlockRessource}"/>
|
||||||
|
</Button>
|
||||||
|
<Button Click="Button_Click_Supprimer_Compte" Style="{StaticResource GreenButtonRessource}" Height="25" Width="150" Margin="20">
|
||||||
|
<TextBlock Text="Supprimer un compte" Style="{StaticResource TextBlockRessource}"/>
|
||||||
|
</Button>
|
||||||
|
</StackPanel>
|
||||||
|
|
||||||
|
</StackPanel>
|
||||||
|
|
||||||
|
<Button Click="Button_Click_ModifSolde" DockPanel.Dock="Bottom" Style="{StaticResource GreenButtonRessource}" Height="25" Width="170" Margin="20">
|
||||||
|
<TextBlock Text="Modifier votre solde" Style="{StaticResource TextBlockRessource}"/>
|
||||||
|
</Button>
|
||||||
|
<TextBlock VerticalAlignment="Center" Text=" Le solde de votre compte courant est de : ???" Style="{StaticResource TextBlockRessource}" FontSize="16" FontWeight="DemiBold"/>
|
||||||
|
|
||||||
|
</DockPanel>
|
||||||
|
|
||||||
|
|
||||||
|
</UserControl>
|
||||||
|
|
@ -0,0 +1,71 @@
|
|||||||
|
<UserControl x:Class="IHM.UCConnexion"
|
||||||
|
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="450" d:DesignWidth="800"
|
||||||
|
Style="{StaticResource ImageFondRessource}">
|
||||||
|
|
||||||
|
<DockPanel>
|
||||||
|
<TextBlock Style="{StaticResource TitreDePage}" >Connexion</TextBlock>
|
||||||
|
<TextBlock DockPanel.Dock="Top" HorizontalAlignment="Center" FontSize="15" Margin="20">Connectez vous à un compte déjà existant</TextBlock>
|
||||||
|
|
||||||
|
<Button Click="Button_Click_Acceuil" Margin="20" DockPanel.Dock="Bottom" Style="{StaticResource GreenButtonRessource}">
|
||||||
|
<TextBlock Text="Retour à la page d'acceuil"/>
|
||||||
|
</Button>
|
||||||
|
|
||||||
|
<Button DockPanel.Dock="Bottom" Click="Button_Click_Connection" Style="{StaticResource GreenButtonRessource}" Height="25" Width="150">
|
||||||
|
<TextBlock Text="Se connecter" Style="{StaticResource TextBlockRessource}"/>
|
||||||
|
</Button>
|
||||||
|
|
||||||
|
<Button DockPanel.Dock="Bottom" Click="Button_Click_Forget_Password" Style="{StaticResource OrangeButtonRessource}" Height="25" Width="170" Margin="20">
|
||||||
|
<TextBlock Text="Mot de passe oublié ?" Style="{StaticResource TextBlockRessource}"/>
|
||||||
|
</Button>
|
||||||
|
|
||||||
|
<Grid>
|
||||||
|
<Grid.ColumnDefinitions>
|
||||||
|
<ColumnDefinition/>
|
||||||
|
<ColumnDefinition/>
|
||||||
|
</Grid.ColumnDefinitions>
|
||||||
|
<Grid.RowDefinitions>
|
||||||
|
<RowDefinition/>
|
||||||
|
<RowDefinition/>
|
||||||
|
</Grid.RowDefinitions>
|
||||||
|
|
||||||
|
|
||||||
|
<TextBlock Style="{StaticResource TextBlockRessource}" FontSize="15">Nom d'utilisateur</TextBlock>
|
||||||
|
<StackPanel Grid.Column="1" Margin="30">
|
||||||
|
<TextBlock x:Name="ErrorUserName" HorizontalAlignment="Center" FontSize="15" Foreground="#FF6347" Visibility="Hidden">Veuillez renseigner votre nom d'utilisateurs</TextBlock>
|
||||||
|
<Border Grid.Column="1" Style="{StaticResource BorderRessource}">
|
||||||
|
<TextBox x:Name="UserName">
|
||||||
|
<TextBox.Resources>
|
||||||
|
<Style TargetType="{x:Type Border}">
|
||||||
|
<Setter Property="CornerRadius" Value="5"/>
|
||||||
|
</Style>
|
||||||
|
</TextBox.Resources>
|
||||||
|
</TextBox>
|
||||||
|
</Border>
|
||||||
|
</StackPanel>
|
||||||
|
|
||||||
|
|
||||||
|
<TextBlock Grid.Row="1" Style="{StaticResource TextBlockRessource}" FontSize="15">Mot de passe</TextBlock>
|
||||||
|
|
||||||
|
<StackPanel Grid.Row="1" Grid.Column="1">
|
||||||
|
<TextBlock x:Name="ErrorPassword" HorizontalAlignment="Center" FontSize="15" Foreground="#FF6347" Visibility="Hidden">Veuillez renseigner votre mot de passe</TextBlock>
|
||||||
|
<Border Style="{StaticResource BorderRessource}">
|
||||||
|
<PasswordBox x:Name="Password">
|
||||||
|
<PasswordBox.Resources>
|
||||||
|
<Style TargetType="{x:Type Border}">
|
||||||
|
<Setter Property="CornerRadius" Value="5"/>
|
||||||
|
</Style>
|
||||||
|
</PasswordBox.Resources>
|
||||||
|
</PasswordBox>
|
||||||
|
</Border>
|
||||||
|
</StackPanel>
|
||||||
|
|
||||||
|
|
||||||
|
</Grid>
|
||||||
|
</DockPanel>
|
||||||
|
</UserControl>
|
@ -0,0 +1,43 @@
|
|||||||
|
<UserControl x:Class="IHM.UCEcheancier"
|
||||||
|
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="450" d:DesignWidth="800"
|
||||||
|
Style="{StaticResource ImageFondRessource}">
|
||||||
|
<DockPanel>
|
||||||
|
<TextBlock Style="{StaticResource TitreDePage}" >Echeancier</TextBlock>
|
||||||
|
|
||||||
|
<WrapPanel DockPanel.Dock="Bottom" HorizontalAlignment="Center">
|
||||||
|
<Border Style="{StaticResource BorderRessource}" Background="BlueViolet">
|
||||||
|
<TextBlock DockPanel.Dock="Bottom" Text="Total" TextAlignment="Center" VerticalAlignment="Center"/>
|
||||||
|
</Border>
|
||||||
|
<Border Style="{StaticResource BorderRessource}" Background="BlueViolet">
|
||||||
|
<TextBlock DockPanel.Dock="Bottom" Text="???" TextAlignment="Center" VerticalAlignment="Center"/>
|
||||||
|
</Border>
|
||||||
|
</WrapPanel>
|
||||||
|
|
||||||
|
<StackPanel Orientation="Vertical" HorizontalAlignment="Center">
|
||||||
|
<WrapPanel HorizontalAlignment="Center">
|
||||||
|
<Button Click="Button_Click_Ajouter_Echeance" Style="{StaticResource GreenButtonRessource}" Content="Enregistrer une échéance"/>
|
||||||
|
<Button Click="Button_Click_Supprimer_Echeance" Style="{StaticResource GreenButtonRessource}" Content="Supprimer une échéance"/>
|
||||||
|
</WrapPanel>
|
||||||
|
<WrapPanel HorizontalAlignment="Center">
|
||||||
|
<WrapPanel.Resources>
|
||||||
|
<Style TargetType="{x:Type TextBlock}">
|
||||||
|
<Setter Property="Margin" Value="60,10,30,0"/>
|
||||||
|
</Style>
|
||||||
|
</WrapPanel.Resources>
|
||||||
|
<TextBlock Text="Nom"/>
|
||||||
|
<TextBlock Text="Date"/>
|
||||||
|
<TextBlock Text="Paiement"/>
|
||||||
|
<TextBlock Text="Type"/>
|
||||||
|
<TextBlock Text="Crédit"/>
|
||||||
|
<TextBlock Text="Débit"/>
|
||||||
|
</WrapPanel>
|
||||||
|
</StackPanel>
|
||||||
|
|
||||||
|
</DockPanel>
|
||||||
|
</UserControl>
|
@ -0,0 +1,16 @@
|
|||||||
|
<UserControl x:Class="IHM.UCEffectuerCredit"
|
||||||
|
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="450" d:DesignWidth="800"
|
||||||
|
Style="{StaticResource ImageFondRessource}">
|
||||||
|
<DockPanel>
|
||||||
|
<TextBlock Text="A FAIRE" FontSize="40"/>
|
||||||
|
<Button Click="Button_Click_Retour" Style="{StaticResource GreenButtonRessource}">
|
||||||
|
<TextBlock Text="Retour"/>
|
||||||
|
</Button>
|
||||||
|
</DockPanel>
|
||||||
|
</UserControl>
|
@ -0,0 +1,16 @@
|
|||||||
|
<UserControl x:Class="IHM.UCEffectuerDebit"
|
||||||
|
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="450" d:DesignWidth="800"
|
||||||
|
Style="{StaticResource ImageFondRessource}">
|
||||||
|
<DockPanel>
|
||||||
|
<TextBlock Text="A FAIRE" FontSize="40"/>
|
||||||
|
<Button Click="Button_Click_Retour" Style="{StaticResource GreenButtonRessource}">
|
||||||
|
<TextBlock Text="Retour"/>
|
||||||
|
</Button>
|
||||||
|
</DockPanel>
|
||||||
|
</UserControl>
|
@ -0,0 +1,94 @@
|
|||||||
|
<UserControl x:Class="IHM.UCInscription"
|
||||||
|
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="450" d:DesignWidth="800"
|
||||||
|
Style="{StaticResource ImageFondRessource}">
|
||||||
|
<DockPanel>
|
||||||
|
|
||||||
|
<TextBlock Style="{StaticResource TitreDePage}" >Inscription</TextBlock>
|
||||||
|
<TextBlock DockPanel.Dock="Top" HorizontalAlignment="Center" FontSize="15" Margin="20">Veuillez créer votre compte en retrant vos informations</TextBlock>
|
||||||
|
|
||||||
|
<Button Click="Button_Click_Acceuil" Margin="20" DockPanel.Dock="Bottom" Style="{StaticResource GreenButtonRessource}">
|
||||||
|
<TextBlock Text="Retour à la page d'acceuil"/>
|
||||||
|
</Button>
|
||||||
|
|
||||||
|
<Button DockPanel.Dock="Bottom" Click="Button_Click_Validation" Style="{StaticResource GreenButtonRessource}" Height="25" Width="150">
|
||||||
|
<TextBlock Text="Valider" Style="{StaticResource TextBlockRessource}"/>
|
||||||
|
</Button>
|
||||||
|
<Grid>
|
||||||
|
<Grid.ColumnDefinitions>
|
||||||
|
<ColumnDefinition/>
|
||||||
|
<ColumnDefinition/>
|
||||||
|
</Grid.ColumnDefinitions>
|
||||||
|
<Grid.RowDefinitions>
|
||||||
|
<RowDefinition/>
|
||||||
|
<RowDefinition/>
|
||||||
|
<RowDefinition/>
|
||||||
|
<RowDefinition/>
|
||||||
|
<RowDefinition/>
|
||||||
|
</Grid.RowDefinitions>
|
||||||
|
|
||||||
|
<TextBlock Text="Nom d'utilisateur" Style="{StaticResource TextBlockRessource}"/>
|
||||||
|
<Border Grid.Column="1" Style="{StaticResource BorderRessource}">
|
||||||
|
<TextBox>
|
||||||
|
<TextBox.Resources>
|
||||||
|
<Style TargetType="{x:Type Border}">
|
||||||
|
<Setter Property="CornerRadius" Value="5"/>
|
||||||
|
</Style>
|
||||||
|
</TextBox.Resources>
|
||||||
|
</TextBox>
|
||||||
|
</Border>
|
||||||
|
|
||||||
|
<TextBlock Grid.Row="1" Text="Nom" Style="{StaticResource TextBlockRessource}"/>
|
||||||
|
<Border Grid.Column="1" Grid.Row="1" Style="{StaticResource BorderRessource}">
|
||||||
|
<TextBox>
|
||||||
|
<TextBox.Resources>
|
||||||
|
<Style TargetType="{x:Type Border}">
|
||||||
|
<Setter Property="CornerRadius" Value="5"/>
|
||||||
|
</Style>
|
||||||
|
</TextBox.Resources>
|
||||||
|
</TextBox>
|
||||||
|
</Border>
|
||||||
|
|
||||||
|
<TextBlock Grid.Row="2" Text="Prenom" Style="{StaticResource TextBlockRessource}"/>
|
||||||
|
<Border Grid.Column="1" Grid.Row="2" Style="{StaticResource BorderRessource}">
|
||||||
|
<TextBox>
|
||||||
|
<TextBox.Resources>
|
||||||
|
<Style TargetType="{x:Type Border}">
|
||||||
|
<Setter Property="CornerRadius" Value="5"/>
|
||||||
|
</Style>
|
||||||
|
</TextBox.Resources>
|
||||||
|
</TextBox>
|
||||||
|
</Border>
|
||||||
|
|
||||||
|
<TextBlock Grid.Row="3" Text="Mail" Style="{StaticResource TextBlockRessource}"/>
|
||||||
|
<Border Grid.Column="1" Grid.Row="3" Style="{StaticResource BorderRessource}">
|
||||||
|
<TextBox>
|
||||||
|
<TextBox.Resources>
|
||||||
|
<Style TargetType="{x:Type Border}">
|
||||||
|
<Setter Property="CornerRadius" Value="5"/>
|
||||||
|
</Style>
|
||||||
|
</TextBox.Resources>
|
||||||
|
</TextBox>
|
||||||
|
</Border>
|
||||||
|
|
||||||
|
<TextBlock Grid.Row="4" Text="Mot de passe" Style="{StaticResource TextBlockRessource}"/>
|
||||||
|
<Border Grid.Column="1" Grid.Row="4" Style="{StaticResource BorderRessource}">
|
||||||
|
<TextBox>
|
||||||
|
<TextBox.Resources>
|
||||||
|
<Style TargetType="{x:Type Border}">
|
||||||
|
<Setter Property="CornerRadius" Value="5"/>
|
||||||
|
</Style>
|
||||||
|
</TextBox.Resources>
|
||||||
|
</TextBox>
|
||||||
|
</Border>
|
||||||
|
</Grid>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</DockPanel>
|
||||||
|
</UserControl>
|
@ -0,0 +1,37 @@
|
|||||||
|
<UserControl x:Class="IHM.UCModifSolde"
|
||||||
|
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="450" d:DesignWidth="800"
|
||||||
|
Style="{StaticResource ImageFondRessource}">
|
||||||
|
|
||||||
|
<DockPanel>
|
||||||
|
<TextBlock DockPanel.Dock="Top" Style="{StaticResource TitreDePage}" >Modification de votre solde</TextBlock>
|
||||||
|
|
||||||
|
<StackPanel DockPanel.Dock="Bottom" Orientation="Horizontal" Margin="20" HorizontalAlignment="Center">
|
||||||
|
<Button Click="Button_Click_Compte" Style="{StaticResource GreenButtonRessource}" Height="25" Width="170">
|
||||||
|
<TextBlock Text="Retour" Style="{StaticResource TextBlockRessource}"/>
|
||||||
|
</Button>
|
||||||
|
<Button DockPanel.Dock="Bottom" Style="{StaticResource GreenButtonRessource}" Height="25" Width="170" Margin="150,0,0,0">
|
||||||
|
<TextBlock Text="Confirmer" Style="{StaticResource TextBlockRessource}"/>
|
||||||
|
</Button>
|
||||||
|
</StackPanel>
|
||||||
|
|
||||||
|
<StackPanel Orientation="Horizontal" HorizontalAlignment="Center">
|
||||||
|
|
||||||
|
<TextBlock Margin="50" Height="25" Width="80">Nouveau solde</TextBlock>
|
||||||
|
|
||||||
|
<TextBox Margin="50" Height="25" Width="170">
|
||||||
|
<TextBox.Resources>
|
||||||
|
<Style TargetType="{x:Type Border}">
|
||||||
|
<Setter Property="CornerRadius" Value="5"/>
|
||||||
|
</Style>
|
||||||
|
</TextBox.Resources>
|
||||||
|
</TextBox>
|
||||||
|
|
||||||
|
</StackPanel>
|
||||||
|
</DockPanel>
|
||||||
|
</UserControl>
|
@ -0,0 +1,46 @@
|
|||||||
|
<UserControl x:Class="IHM.UCOperation"
|
||||||
|
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="450" d:DesignWidth="800"
|
||||||
|
Style="{StaticResource ImageFondRessource}">
|
||||||
|
<DockPanel>
|
||||||
|
|
||||||
|
<TextBlock DockPanel.Dock="Top" Text="Opérations" Style="{StaticResource TitreDePage}"/>
|
||||||
|
|
||||||
|
<WrapPanel DockPanel.Dock="Bottom" HorizontalAlignment="Center">
|
||||||
|
<Border Style="{StaticResource BorderRessource}" Background="BlueViolet">
|
||||||
|
<TextBlock DockPanel.Dock="Bottom" Text="Solde" TextAlignment="Center" VerticalAlignment="Center"/>
|
||||||
|
</Border>
|
||||||
|
<Border Style="{StaticResource BorderRessource}" Background="BlueViolet">
|
||||||
|
<TextBlock DockPanel.Dock="Bottom" Text="???" TextAlignment="Center" VerticalAlignment="Center"/>
|
||||||
|
</Border>
|
||||||
|
</WrapPanel>
|
||||||
|
|
||||||
|
<StackPanel Orientation="Vertical" HorizontalAlignment="Center">
|
||||||
|
<WrapPanel HorizontalAlignment="Center">
|
||||||
|
<Button Style="{StaticResource GreenButtonRessource}" Click="Button_Click_EffectuerCredit" Content="Effectuer un crédit"/>
|
||||||
|
<Button Style="{StaticResource GreenButtonRessource}" Click="Button_Click_EffectuerDebit" Content="Effectuer un débit"/>
|
||||||
|
<Button Style="{StaticResource GreenButtonRessource}" Click="Button_Click_RetirerOperation" Content="Retirer une opération"/>
|
||||||
|
<Button Style="{StaticResource GreenButtonRessource}" Click="Button_Click_SupprimerOperation" Content="Supprimer une opération"/>
|
||||||
|
</WrapPanel>
|
||||||
|
<WrapPanel HorizontalAlignment="Center">
|
||||||
|
<WrapPanel.Resources>
|
||||||
|
<Style TargetType="{x:Type TextBlock}">
|
||||||
|
<Setter Property="Margin" Value="60,10,30,0"/>
|
||||||
|
</Style>
|
||||||
|
</WrapPanel.Resources>
|
||||||
|
<TextBlock Text="Nom"/>
|
||||||
|
<TextBlock Text="Date"/>
|
||||||
|
<TextBlock Text="Paiement"/>
|
||||||
|
<TextBlock Text="Type"/>
|
||||||
|
<TextBlock Text="Crédit"/>
|
||||||
|
<TextBlock Text="Débit"/>
|
||||||
|
</WrapPanel>
|
||||||
|
</StackPanel>
|
||||||
|
</DockPanel>
|
||||||
|
|
||||||
|
</UserControl>
|
@ -0,0 +1,50 @@
|
|||||||
|
<UserControl x:Class="IHM.UCPlanification"
|
||||||
|
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="450" d:DesignWidth="800"
|
||||||
|
Style="{StaticResource ImageFondRessource}">
|
||||||
|
<DockPanel>
|
||||||
|
|
||||||
|
<TextBlock DockPanel.Dock="Top" Text="Planification" Style="{StaticResource TitreDePage}"/>
|
||||||
|
|
||||||
|
<WrapPanel DockPanel.Dock="Bottom" HorizontalAlignment="Center">
|
||||||
|
<Border Style="{StaticResource BorderRessource}" Background="BlueViolet">
|
||||||
|
<TextBlock DockPanel.Dock="Bottom" Text="Total" TextAlignment="Center" VerticalAlignment="Center"/>
|
||||||
|
</Border>
|
||||||
|
<Border Style="{StaticResource BorderRessource}" Background="BlueViolet">
|
||||||
|
<TextBlock DockPanel.Dock="Bottom" Text="???" TextAlignment="Center" VerticalAlignment="Center"/>
|
||||||
|
</Border>
|
||||||
|
</WrapPanel>
|
||||||
|
|
||||||
|
<StackPanel Orientation="Vertical" HorizontalAlignment="Center">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<WrapPanel HorizontalAlignment="Center">
|
||||||
|
<Button Style="{StaticResource GreenButtonRessource}" Click="Button_Click_Ajouter_Planification" Content="Enregistrer une planification"/>
|
||||||
|
<Button Style="{StaticResource GreenButtonRessource}" Click="Button_Click_Supprimer_Planification" Content="supprimer une planification"/>
|
||||||
|
</WrapPanel>
|
||||||
|
<TextBlock Text="Basculement vers échéancier tous les premiers du mois" HorizontalAlignment="Center" FontStyle="Italic"/>
|
||||||
|
<WrapPanel HorizontalAlignment="Center">
|
||||||
|
<WrapPanel.Resources>
|
||||||
|
<Style TargetType="{x:Type TextBlock}">
|
||||||
|
<Setter Property="Margin" Value="60,10,30,0"/>
|
||||||
|
</Style>
|
||||||
|
</WrapPanel.Resources>
|
||||||
|
<TextBlock Text="Nom"/>
|
||||||
|
<TextBlock Text="Date"/>
|
||||||
|
<TextBlock Text="Paiement"/>
|
||||||
|
<TextBlock Text="Type"/>
|
||||||
|
<TextBlock Text="Crédit"/>
|
||||||
|
<TextBlock Text="Débit"/>
|
||||||
|
</WrapPanel>
|
||||||
|
</StackPanel>
|
||||||
|
|
||||||
|
|
||||||
|
</DockPanel>
|
||||||
|
</UserControl>
|
||||||
|
|
@ -0,0 +1,16 @@
|
|||||||
|
<UserControl x:Class="IHM.UCRetirerOperation"
|
||||||
|
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="450" d:DesignWidth="800"
|
||||||
|
Style="{StaticResource ImageFondRessource}">
|
||||||
|
<DockPanel>
|
||||||
|
<TextBlock Text="A FAIRE" FontSize="40"/>
|
||||||
|
<Button Click="Button_Click_Retour" Style="{StaticResource GreenButtonRessource}">
|
||||||
|
<TextBlock Text="Retour"/>
|
||||||
|
</Button>
|
||||||
|
</DockPanel>
|
||||||
|
</UserControl>
|
@ -0,0 +1,16 @@
|
|||||||
|
<UserControl x:Class="IHM.UCSupprimerBanque"
|
||||||
|
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="450" d:DesignWidth="800"
|
||||||
|
Style="{StaticResource ImageFondRessource}">
|
||||||
|
<DockPanel>
|
||||||
|
<TextBlock Text="A FAIRE" FontSize="40"/>
|
||||||
|
<Button Click="Button_Click_Retour" Style="{StaticResource GreenButtonRessource}">
|
||||||
|
<TextBlock Text="Retour"/>
|
||||||
|
</Button>
|
||||||
|
</DockPanel>
|
||||||
|
</UserControl>
|
@ -0,0 +1,17 @@
|
|||||||
|
<UserControl x:Class="IHM.UCSupprimerCompte"
|
||||||
|
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="450" d:DesignWidth="800"
|
||||||
|
Style="{StaticResource ImageFondRessource}">
|
||||||
|
<DockPanel>
|
||||||
|
<TextBlock Text="A FAIRE" FontSize="40"/>
|
||||||
|
<Button Click="Button_Click_Retour" Style="{StaticResource GreenButtonRessource}">
|
||||||
|
<TextBlock Text="Retour"/>
|
||||||
|
</Button>
|
||||||
|
</DockPanel>
|
||||||
|
|
||||||
|
</UserControl>
|
@ -0,0 +1,16 @@
|
|||||||
|
<UserControl x:Class="IHM.UCSupprimerEcheance"
|
||||||
|
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="450" d:DesignWidth="800"
|
||||||
|
Style="{StaticResource ImageFondRessource}">
|
||||||
|
<DockPanel>
|
||||||
|
<TextBlock Text="A FAIRE" FontSize="40"/>
|
||||||
|
<Button Click="Button_Click_Retour" Style="{StaticResource GreenButtonRessource}">
|
||||||
|
<TextBlock Text="Retour"/>
|
||||||
|
</Button>
|
||||||
|
</DockPanel>
|
||||||
|
</UserControl>
|
@ -0,0 +1,16 @@
|
|||||||
|
<UserControl x:Class="IHM.UCSupprimerOperation"
|
||||||
|
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="450" d:DesignWidth="800"
|
||||||
|
Style="{StaticResource ImageFondRessource}">
|
||||||
|
<DockPanel>
|
||||||
|
<TextBlock Text="A FAIRE" FontSize="40"/>
|
||||||
|
<Button Click="Button_Click_Retour" Style="{StaticResource GreenButtonRessource}">
|
||||||
|
<TextBlock Text="Retour"/>
|
||||||
|
</Button>
|
||||||
|
</DockPanel>
|
||||||
|
</UserControl>
|
@ -0,0 +1,16 @@
|
|||||||
|
<UserControl x:Class="IHM.UCSupprimerPlanification"
|
||||||
|
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="450" d:DesignWidth="800"
|
||||||
|
Style="{StaticResource ImageFondRessource}">
|
||||||
|
<DockPanel>
|
||||||
|
<TextBlock Text="A FAIRE" FontSize="40"/>
|
||||||
|
<Button Click="Button_Click_Retour" Style="{StaticResource GreenButtonRessource}">
|
||||||
|
<TextBlock Text="Retour"/>
|
||||||
|
</Button>
|
||||||
|
</DockPanel>
|
||||||
|
</UserControl>
|
@ -0,0 +1,12 @@
|
|||||||
|
<UserControl x:Class="IHM.UCTableauDeBord"
|
||||||
|
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="450" d:DesignWidth="800">
|
||||||
|
<Grid>
|
||||||
|
|
||||||
|
</Grid>
|
||||||
|
</UserControl>
|
After Width: | Height: | Size: 42 KiB |
After Width: | Height: | Size: 567 KiB |
After Width: | Height: | Size: 97 KiB |
Loading…
Reference in new issue