From 64fc5d2b3e26583eac46273c6eb039ca5e92cd69 Mon Sep 17 00:00:00 2001 From: Lorenz Stechauner Date: Fri, 3 Mar 2023 23:21:31 +0100 Subject: [PATCH] Add DeliveryReceptionWindow --- WGneu/WGneu.csproj.user | 6 ++++++ WGneu/Windows/DeliveryReceptionWindow.xaml | 12 +++++++++++ WGneu/Windows/DeliveryReceptionWindow.xaml.cs | 21 +++++++++++++++++++ 3 files changed, 39 insertions(+) create mode 100644 WGneu/Windows/DeliveryReceptionWindow.xaml create mode 100644 WGneu/Windows/DeliveryReceptionWindow.xaml.cs diff --git a/WGneu/WGneu.csproj.user b/WGneu/WGneu.csproj.user index 16941c8..aa8338a 100644 --- a/WGneu/WGneu.csproj.user +++ b/WGneu/WGneu.csproj.user @@ -10,6 +10,9 @@ Code + + Code + @@ -18,5 +21,8 @@ Designer + + Designer + \ No newline at end of file diff --git a/WGneu/Windows/DeliveryReceptionWindow.xaml b/WGneu/Windows/DeliveryReceptionWindow.xaml new file mode 100644 index 0000000..e661b17 --- /dev/null +++ b/WGneu/Windows/DeliveryReceptionWindow.xaml @@ -0,0 +1,12 @@ + + + + + diff --git a/WGneu/Windows/DeliveryReceptionWindow.xaml.cs b/WGneu/Windows/DeliveryReceptionWindow.xaml.cs new file mode 100644 index 0000000..cc30dfe --- /dev/null +++ b/WGneu/Windows/DeliveryReceptionWindow.xaml.cs @@ -0,0 +1,21 @@ +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 WGneu.Windows { + public partial class DeliveryReceptionWindow : Window { + public DeliveryReceptionWindow() { + InitializeComponent(); + } + } +}