diff --git a/Code/IHM/MainWindow.xaml b/Code/IHM/MainWindow.xaml index d37e382..3eb358b 100644 --- a/Code/IHM/MainWindow.xaml +++ b/Code/IHM/MainWindow.xaml @@ -24,7 +24,7 @@ + + diff --git a/Code/IHM/UCEffectuerCredit.xaml.cs b/Code/IHM/UCEffectuerCredit.xaml.cs new file mode 100644 index 0000000..537cf8b --- /dev/null +++ b/Code/IHM/UCEffectuerCredit.xaml.cs @@ -0,0 +1,34 @@ +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 UserControl1.xaml + /// + public partial class UCEffectuerCredit : UserControl + { + public Navigator Nav => (App.Current as App).Navigator; + + public UCEffectuerCredit() + { + InitializeComponent(); + } + private void Button_Click_Retour(object sender, RoutedEventArgs e) + { + Nav.NavigateTo(Navigator.PART_OPERATION); + } + } +} diff --git a/Code/IHM/UCEffectuerDebit.xaml b/Code/IHM/UCEffectuerDebit.xaml new file mode 100644 index 0000000..eb98616 --- /dev/null +++ b/Code/IHM/UCEffectuerDebit.xaml @@ -0,0 +1,16 @@ + + + + + + diff --git a/Code/IHM/UCEffectuerDebit.xaml.cs b/Code/IHM/UCEffectuerDebit.xaml.cs new file mode 100644 index 0000000..80e7d5a --- /dev/null +++ b/Code/IHM/UCEffectuerDebit.xaml.cs @@ -0,0 +1,34 @@ +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 UserControl1.xaml + /// + public partial class UCEffectuerDebit : UserControl + { + public Navigator Nav => (App.Current as App).Navigator; + + public UCEffectuerDebit() + { + InitializeComponent(); + } + private void Button_Click_Retour(object sender, RoutedEventArgs e) + { + Nav.NavigateTo(Navigator.PART_OPERATION); + } + } +} diff --git a/Code/IHM/UCOperation.xaml b/Code/IHM/UCOperation.xaml index c156f71..46f6016 100644 --- a/Code/IHM/UCOperation.xaml +++ b/Code/IHM/UCOperation.xaml @@ -22,10 +22,10 @@ - + + \ No newline at end of file diff --git a/Code/IHM/UCRetirerOperation.xaml.cs b/Code/IHM/UCRetirerOperation.xaml.cs new file mode 100644 index 0000000..13319a6 --- /dev/null +++ b/Code/IHM/UCRetirerOperation.xaml.cs @@ -0,0 +1,34 @@ +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 UserControl2.xaml + /// + public partial class UCRetirerOperation : UserControl + { + public Navigator Nav => (App.Current as App).Navigator; + + public UCRetirerOperation() + { + InitializeComponent(); + } + private void Button_Click_Retour(object sender, RoutedEventArgs e) + { + Nav.NavigateTo(Navigator.PART_OPERATION); + } + } +} diff --git a/Code/IHM/UCSupprimerOperation.xaml b/Code/IHM/UCSupprimerOperation.xaml new file mode 100644 index 0000000..6ff42ec --- /dev/null +++ b/Code/IHM/UCSupprimerOperation.xaml @@ -0,0 +1,16 @@ + + + + + + \ No newline at end of file diff --git a/Code/IHM/UCSupprimerOperation.xaml.cs b/Code/IHM/UCSupprimerOperation.xaml.cs new file mode 100644 index 0000000..7b8e9ce --- /dev/null +++ b/Code/IHM/UCSupprimerOperation.xaml.cs @@ -0,0 +1,34 @@ +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 UserControl3.xaml + /// + public partial class UCSupprimerOperation : UserControl + { + public Navigator Nav => (App.Current as App).Navigator; + + public UCSupprimerOperation() + { + InitializeComponent(); + } + private void Button_Click_Retour(object sender, RoutedEventArgs e) + { + Nav.NavigateTo(Navigator.PART_OPERATION); + } + } +}