From 71acf8aac1e363801ae018dd2a9947de284161be Mon Sep 17 00:00:00 2001 From: Vincent ASTOLFI Date: Wed, 12 Oct 2022 13:53:59 +0200 Subject: [PATCH] =?UTF-8?q?ajout=20des=20Button=5FClick=20sur=20les=20diff?= =?UTF-8?q?=C3=A9rents=20click=20des=20UC=20connexion=20et=20inscription.?= =?UTF-8?q?=20(=20certain=20bouton=20ne=20poss=C3=A8de=20pas=20de=20code?= =?UTF-8?q?=20car=20ils=20seront=20=C3=A0=20impl=C3=A9menter=20plus=20tard?= =?UTF-8?q?)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Code/IHM/UCConnexion.xaml | 4 ++-- Code/IHM/UCConnexion.xaml.cs | 10 ++++++++++ Code/IHM/UCInscription.xaml | 2 +- Code/IHM/UCInscription.xaml.cs | 5 +++++ 4 files changed, 18 insertions(+), 3 deletions(-) diff --git a/Code/IHM/UCConnexion.xaml b/Code/IHM/UCConnexion.xaml index 492a35b..5c947e3 100644 --- a/Code/IHM/UCConnexion.xaml +++ b/Code/IHM/UCConnexion.xaml @@ -16,11 +16,11 @@ - - diff --git a/Code/IHM/UCConnexion.xaml.cs b/Code/IHM/UCConnexion.xaml.cs index 18126b1..1ad5266 100644 --- a/Code/IHM/UCConnexion.xaml.cs +++ b/Code/IHM/UCConnexion.xaml.cs @@ -31,5 +31,15 @@ namespace IHM Nav.NavigateTo(Navigator.PART_CONNEXION, Navigator.PART_MAIN); } + private void Button_Click_Connection(object sender, RoutedEventArgs e) + { + // TO DO + } + + private void Button_Click_Forget_Password(object sender, RoutedEventArgs e) + { + // TO DO + } + } } diff --git a/Code/IHM/UCInscription.xaml b/Code/IHM/UCInscription.xaml index 8a31bd9..5e2f9fc 100644 --- a/Code/IHM/UCInscription.xaml +++ b/Code/IHM/UCInscription.xaml @@ -16,7 +16,7 @@ - diff --git a/Code/IHM/UCInscription.xaml.cs b/Code/IHM/UCInscription.xaml.cs index 13c4220..b7c9612 100644 --- a/Code/IHM/UCInscription.xaml.cs +++ b/Code/IHM/UCInscription.xaml.cs @@ -30,5 +30,10 @@ namespace IHM { Nav.NavigateTo(Navigator.PART_CONNEXION, Navigator.PART_MAIN); } + + private void Button_Click_Validation(object sender, RoutedEventArgs e) + { + // TO DO + } } }