From 2bc4b19f0143b5c9f845fc23b2b70dcf873a190b Mon Sep 17 00:00:00 2001 From: Vincent ASTOLFI Date: Fri, 14 Oct 2022 14:12:07 +0200 Subject: [PATCH] ajout de UCOperation et changement de style --- Code/IHM/App.xaml | 6 +++--- Code/IHM/UCOperation.xaml | 13 +++++++++++++ Code/IHM/UCOperation.xaml.cs | 28 ++++++++++++++++++++++++++++ 3 files changed, 44 insertions(+), 3 deletions(-) create mode 100644 Code/IHM/UCOperation.xaml create mode 100644 Code/IHM/UCOperation.xaml.cs diff --git a/Code/IHM/App.xaml b/Code/IHM/App.xaml index 88f9e2d..784b435 100644 --- a/Code/IHM/App.xaml +++ b/Code/IHM/App.xaml @@ -18,8 +18,8 @@ diff --git a/Code/IHM/UCOperation.xaml b/Code/IHM/UCOperation.xaml new file mode 100644 index 0000000..546498e --- /dev/null +++ b/Code/IHM/UCOperation.xaml @@ -0,0 +1,13 @@ + + + + + diff --git a/Code/IHM/UCOperation.xaml.cs b/Code/IHM/UCOperation.xaml.cs new file mode 100644 index 0000000..a8845ae --- /dev/null +++ b/Code/IHM/UCOperation.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 UCOperation.xaml + /// + public partial class UCOperation : UserControl + { + public UCOperation() + { + InitializeComponent(); + } + } +}