From df44870fb7a85dc9f65f8ba1520258a47027d925 Mon Sep 17 00:00:00 2001 From: majean5 Date: Fri, 20 May 2022 14:42:25 +0200 Subject: [PATCH] add a shark mieux + validerSubmit --- WpfApp1/AddAShark.xaml | 30 +++++++++++++++++++++++++++++- WpfApp1/App.xaml.cs | 1 + WpfApp1/MainWindow.xaml | 3 +-- WpfApp1/MainWindow.xaml.cs | 1 + WpfApp1/ValiderSubmit.xaml | 18 ++++++++++++++++++ WpfApp1/ValiderSubmit.xaml.cs | 27 +++++++++++++++++++++++++++ 6 files changed, 77 insertions(+), 3 deletions(-) create mode 100644 WpfApp1/ValiderSubmit.xaml create mode 100644 WpfApp1/ValiderSubmit.xaml.cs diff --git a/WpfApp1/AddAShark.xaml b/WpfApp1/AddAShark.xaml index 0ed532f..c396e81 100644 --- a/WpfApp1/AddAShark.xaml +++ b/WpfApp1/AddAShark.xaml @@ -52,7 +52,35 @@ - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/WpfApp1/ValiderSubmit.xaml.cs b/WpfApp1/ValiderSubmit.xaml.cs new file mode 100644 index 0000000..6516aae --- /dev/null +++ b/WpfApp1/ValiderSubmit.xaml.cs @@ -0,0 +1,27 @@ +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.Shapes; + +namespace WpfApp1 +{ + /// + /// Logique d'interaction pour ValiderSubmit.xaml + /// + public partial class ValiderSubmit : Window + { + public ValiderSubmit() + { + InitializeComponent(); + } + } +}