From d4cf23c9ffa2e25846633fe60e97b10c33bf3c5d Mon Sep 17 00:00:00 2001 From: Strati Date: Sat, 28 Jul 2018 13:47:47 +0200 Subject: [PATCH] edit forms to fit english language --- WebClient/WpfWebClient/AddFoodplace.xaml | 15 --------- WebClient/WpfWebClient/ExamForm.xaml | 22 +++++++++++++ ...{AddFoodplace.xaml.cs => ExamForm.xaml.cs} | 8 +++-- WebClient/WpfWebClient/FoodplaceForm.xaml | 22 +++++++++++++ WebClient/WpfWebClient/FoodplaceForm.xaml.cs | 29 +++++++++++++++++ WebClient/WpfWebClient/MainWindow.xaml | 14 ++++---- WebClient/WpfWebClient/MainWindow.xaml.cs | 27 +++++++++------- WebClient/WpfWebClient/PatientForm.xaml | 32 +++++++++---------- WebClient/WpfWebClient/PatientForm.xaml.cs | 1 + WebClient/WpfWebClient/ViewDoctors.xaml.cs | 4 ++- WebClient/WpfWebClient/ViewStrains.xaml.cs | 8 ++--- WebClient/WpfWebClient/WpfWebClient.csproj | 13 ++++++-- 12 files changed, 136 insertions(+), 59 deletions(-) delete mode 100644 WebClient/WpfWebClient/AddFoodplace.xaml create mode 100644 WebClient/WpfWebClient/ExamForm.xaml rename WebClient/WpfWebClient/{AddFoodplace.xaml.cs => ExamForm.xaml.cs} (72%) create mode 100644 WebClient/WpfWebClient/FoodplaceForm.xaml create mode 100644 WebClient/WpfWebClient/FoodplaceForm.xaml.cs diff --git a/WebClient/WpfWebClient/AddFoodplace.xaml b/WebClient/WpfWebClient/AddFoodplace.xaml deleted file mode 100644 index 4294b36..0000000 --- a/WebClient/WpfWebClient/AddFoodplace.xaml +++ /dev/null @@ -1,15 +0,0 @@ - - - - - diff --git a/WebClient/WpfWebClient/ExamForm.xaml b/WebClient/WpfWebClient/ExamForm.xaml new file mode 100644 index 0000000..7b77e2c --- /dev/null +++ b/WebClient/WpfWebClient/ExamForm.xaml @@ -0,0 +1,22 @@ + + + + + + + + + + + + + diff --git a/WebClient/WpfWebClient/AddFoodplace.xaml.cs b/WebClient/WpfWebClient/ExamForm.xaml.cs similarity index 72% rename from WebClient/WpfWebClient/AddFoodplace.xaml.cs rename to WebClient/WpfWebClient/ExamForm.xaml.cs index 5a1ac59..03a2ba0 100644 --- a/WebClient/WpfWebClient/AddFoodplace.xaml.cs +++ b/WebClient/WpfWebClient/ExamForm.xaml.cs @@ -10,16 +10,18 @@ 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; +using WpfWebClient.ServiceReferenceEHEC; namespace WpfWebClient { /// - /// Interaction logic for AddFoodplace.xaml + /// Interaction logic for CaseForm.xaml /// - public partial class AddFoodplace : Page + public partial class ExamForm : Page { - public AddFoodplace() + public ExamForm() { InitializeComponent(); } diff --git a/WebClient/WpfWebClient/FoodplaceForm.xaml b/WebClient/WpfWebClient/FoodplaceForm.xaml new file mode 100644 index 0000000..ad91eb0 --- /dev/null +++ b/WebClient/WpfWebClient/FoodplaceForm.xaml @@ -0,0 +1,22 @@ + + + + + + + + + + + + + diff --git a/WebClient/WpfWebClient/FoodplaceForm.xaml.cs b/WebClient/WpfWebClient/FoodplaceForm.xaml.cs new file mode 100644 index 0000000..449c8a4 --- /dev/null +++ b/WebClient/WpfWebClient/FoodplaceForm.xaml.cs @@ -0,0 +1,29 @@ +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; +using WpfWebClient.ServiceReferenceEHEC; + +namespace WpfWebClient +{ + /// + /// Interaction logic for FoodplaceForm.xaml + /// + public partial class FoodplaceForm : Page + { + public FoodplaceForm() + { + InitializeComponent(); + } + } +} diff --git a/WebClient/WpfWebClient/MainWindow.xaml b/WebClient/WpfWebClient/MainWindow.xaml index 807c5f5..8f962b4 100644 --- a/WebClient/WpfWebClient/MainWindow.xaml +++ b/WebClient/WpfWebClient/MainWindow.xaml @@ -5,7 +5,7 @@ xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:local="clr-namespace:WpfWebClient" mc:Ignorable="d" - Title="MainWindow" Height="596" Width="800"> + Title="MainWindow" Height="700" Width="800"> @@ -14,12 +14,14 @@