From 282ce37df531d7ea33cf470b0b3e0d3267c163ca Mon Sep 17 00:00:00 2001 From: Raphael LACOTE Date: Fri, 14 Oct 2022 16:55:14 +0200 Subject: [PATCH] Ajout de l'UC Modification du Solde --- Code/IHM/UCCompte.xaml | 6 ++---- Code/IHM/UCModifSolde.xaml | 37 +++++++++++++++++++++++++++++++++++ Code/IHM/UCModifSolde.xaml.cs | 28 ++++++++++++++++++++++++++ 3 files changed, 67 insertions(+), 4 deletions(-) create mode 100644 Code/IHM/UCModifSolde.xaml create mode 100644 Code/IHM/UCModifSolde.xaml.cs diff --git a/Code/IHM/UCCompte.xaml b/Code/IHM/UCCompte.xaml index ee39df3..875e81c 100644 --- a/Code/IHM/UCCompte.xaml +++ b/Code/IHM/UCCompte.xaml @@ -11,10 +11,8 @@ - - Compte - + - + + + + + + + Nouveau solde + + + + + + + + + + diff --git a/Code/IHM/UCModifSolde.xaml.cs b/Code/IHM/UCModifSolde.xaml.cs new file mode 100644 index 0000000..0c02e63 --- /dev/null +++ b/Code/IHM/UCModifSolde.xaml.cs @@ -0,0 +1,28 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using System.Windows; +using System.Windows.Controls; +using System.Windows.Data; +using System.Windows.Documents; +using System.Windows.Input; +using System.Windows.Media; +using System.Windows.Media.Imaging; +using System.Windows.Navigation; +using System.Windows.Shapes; + +namespace IHM +{ + /// + /// Logique d'interaction pour Page1.xaml + /// + public partial class ModifSolde : UserControl + { + public ModifSolde() + { + InitializeComponent(); + } + } +}