From 377280ebfe36443e5747d0e3421c53257025ca6e Mon Sep 17 00:00:00 2001 From: Marcus Bachler Date: Thu, 11 Mar 2021 12:12:05 +0100 Subject: [PATCH] =?UTF-8?q?Projektdateien=20hinzuf=C3=BCgen.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ZKuP/AddCardUser.xaml | 31 + ZKuP/AddCardUser.xaml.cs | 79 +++ ZKuP/App.config | 47 ++ ZKuP/App.xaml | 9 + ZKuP/App.xaml.cs | 76 +++ ZKuP/Arrivals.xaml | 62 ++ ZKuP/Arrivals.xaml.cs | 445 ++++++++++++ ZKuP/ArrivalsOverview.xaml | 112 +++ ZKuP/ArrivalsOverview.xaml.cs | 110 +++ ZKuP/AspInfo.xaml | 43 ++ ZKuP/AspInfo.xaml.cs | 139 ++++ ZKuP/Cards.xaml | 22 + ZKuP/Cards.xaml.cs | 86 +++ ZKuP/CheckParkausweis.xaml | 17 + ZKuP/CheckParkausweis.xaml.cs | 57 ++ ZKuP/CreateFirma.xaml | 427 ++++++++++++ ZKuP/CreateFirma.xaml.cs | 765 +++++++++++++++++++++ ZKuP/CreateParkausweis.xaml | 78 +++ ZKuP/CreateParkausweis.xaml.cs | 386 +++++++++++ ZKuP/CreateVisitor.xaml | 32 + ZKuP/CreateVisitor.xaml.cs | 141 ++++ ZKuP/CreateVisitor_List.xaml | 40 ++ ZKuP/CreateVisitor_List.xaml.cs | 180 +++++ ZKuP/DBImageManager.cs | 93 +++ ZKuP/Delivery.xaml | 45 ++ ZKuP/Delivery.xaml.cs | 122 ++++ ZKuP/FodyWeavers.xml | 4 + ZKuP/FodyWeavers.xsd | 111 +++ ZKuP/GrantParkausweis.xaml | 54 ++ ZKuP/GrantParkausweis.xaml.cs | 135 ++++ ZKuP/Helper.cs | 446 ++++++++++++ ZKuP/ImageView.xaml | 23 + ZKuP/ImageView.xaml.cs | 152 +++++ ZKuP/Log.cs | 19 + ZKuP/MainWindow - Kopieren.xaml | 94 +++ ZKuP/MainWindow - Kopieren.xaml.cs | 625 +++++++++++++++++ ZKuP/MainWindow.xaml | 385 +++++++++++ ZKuP/MainWindow.xaml.cs | 944 ++++++++++++++++++++++++++ ZKuP/ManageAsp.xaml | 36 + ZKuP/ManageAsp.xaml.cs | 178 +++++ ZKuP/ManageDeliveries.xaml | 24 + ZKuP/ManageDeliveries.xaml.cs | 211 ++++++ ZKuP/ManageParkausweis.xaml | 44 ++ ZKuP/ManageParkausweis.xaml.cs | 46 ++ ZKuP/ManageUsers.xaml | 27 + ZKuP/ManageUsers.xaml.cs | 142 ++++ ZKuP/ManageVisitor.xaml | 86 +++ ZKuP/ManageVisitor.xaml.cs | 436 ++++++++++++ ZKuP/ParkausweisDisclaimer.xaml | 81 +++ ZKuP/ParkausweisDisclaimer.xaml.cs | 46 ++ ZKuP/PrintParkausweis.xaml | 35 + ZKuP/PrintParkausweis.xaml.cs | 56 ++ ZKuP/Properties/AssemblyInfo.cs | 55 ++ ZKuP/Properties/Resources.Designer.cs | 306 +++++++++ ZKuP/Properties/Resources.resx | 117 ++++ ZKuP/Properties/Settings.Designer.cs | 122 ++++ ZKuP/Properties/Settings.settings | 30 + ZKuP/Properties/app.manifest | 70 ++ ZKuP/Resources/Cancel BW.png | Bin 0 -> 556 bytes ZKuP/Resources/Capture Sigma.png | Bin 0 -> 2246 bytes ZKuP/Resources/NoSignature.png | Bin 0 -> 2483 bytes ZKuP/Resources/OK BW.png | Bin 0 -> 523 bytes ZKuP/Resources/PLZ_MUC.txt | 152 +++++ ZKuP/Resources/Pad Sigma.png | Bin 0 -> 82174 bytes ZKuP/Resources/db-logo.png | Bin 0 -> 8768 bytes ZKuP/SQL.cs | 447 ++++++++++++ ZKuP/Signature.xaml | 20 + ZKuP/Signature.xaml.cs | 114 ++++ ZKuP/ZKuP.csproj | 444 ++++++++++++ ZKuP/ZKuP.ico | Bin 0 -> 145898 bytes ZKuP/packages.config | 15 + ZKuP/signoPad.cs | 868 +++++++++++++++++++++++ ZKuPProject.sln | 37 + 73 files changed, 10881 insertions(+) create mode 100644 ZKuP/AddCardUser.xaml create mode 100644 ZKuP/AddCardUser.xaml.cs create mode 100644 ZKuP/App.config create mode 100644 ZKuP/App.xaml create mode 100644 ZKuP/App.xaml.cs create mode 100644 ZKuP/Arrivals.xaml create mode 100644 ZKuP/Arrivals.xaml.cs create mode 100644 ZKuP/ArrivalsOverview.xaml create mode 100644 ZKuP/ArrivalsOverview.xaml.cs create mode 100644 ZKuP/AspInfo.xaml create mode 100644 ZKuP/AspInfo.xaml.cs create mode 100644 ZKuP/Cards.xaml create mode 100644 ZKuP/Cards.xaml.cs create mode 100644 ZKuP/CheckParkausweis.xaml create mode 100644 ZKuP/CheckParkausweis.xaml.cs create mode 100644 ZKuP/CreateFirma.xaml create mode 100644 ZKuP/CreateFirma.xaml.cs create mode 100644 ZKuP/CreateParkausweis.xaml create mode 100644 ZKuP/CreateParkausweis.xaml.cs create mode 100644 ZKuP/CreateVisitor.xaml create mode 100644 ZKuP/CreateVisitor.xaml.cs create mode 100644 ZKuP/CreateVisitor_List.xaml create mode 100644 ZKuP/CreateVisitor_List.xaml.cs create mode 100644 ZKuP/DBImageManager.cs create mode 100644 ZKuP/Delivery.xaml create mode 100644 ZKuP/Delivery.xaml.cs create mode 100644 ZKuP/FodyWeavers.xml create mode 100644 ZKuP/FodyWeavers.xsd create mode 100644 ZKuP/GrantParkausweis.xaml create mode 100644 ZKuP/GrantParkausweis.xaml.cs create mode 100644 ZKuP/Helper.cs create mode 100644 ZKuP/ImageView.xaml create mode 100644 ZKuP/ImageView.xaml.cs create mode 100644 ZKuP/Log.cs create mode 100644 ZKuP/MainWindow - Kopieren.xaml create mode 100644 ZKuP/MainWindow - Kopieren.xaml.cs create mode 100644 ZKuP/MainWindow.xaml create mode 100644 ZKuP/MainWindow.xaml.cs create mode 100644 ZKuP/ManageAsp.xaml create mode 100644 ZKuP/ManageAsp.xaml.cs create mode 100644 ZKuP/ManageDeliveries.xaml create mode 100644 ZKuP/ManageDeliveries.xaml.cs create mode 100644 ZKuP/ManageParkausweis.xaml create mode 100644 ZKuP/ManageParkausweis.xaml.cs create mode 100644 ZKuP/ManageUsers.xaml create mode 100644 ZKuP/ManageUsers.xaml.cs create mode 100644 ZKuP/ManageVisitor.xaml create mode 100644 ZKuP/ManageVisitor.xaml.cs create mode 100644 ZKuP/ParkausweisDisclaimer.xaml create mode 100644 ZKuP/ParkausweisDisclaimer.xaml.cs create mode 100644 ZKuP/PrintParkausweis.xaml create mode 100644 ZKuP/PrintParkausweis.xaml.cs create mode 100644 ZKuP/Properties/AssemblyInfo.cs create mode 100644 ZKuP/Properties/Resources.Designer.cs create mode 100644 ZKuP/Properties/Resources.resx create mode 100644 ZKuP/Properties/Settings.Designer.cs create mode 100644 ZKuP/Properties/Settings.settings create mode 100644 ZKuP/Properties/app.manifest create mode 100644 ZKuP/Resources/Cancel BW.png create mode 100644 ZKuP/Resources/Capture Sigma.png create mode 100644 ZKuP/Resources/NoSignature.png create mode 100644 ZKuP/Resources/OK BW.png create mode 100644 ZKuP/Resources/PLZ_MUC.txt create mode 100644 ZKuP/Resources/Pad Sigma.png create mode 100644 ZKuP/Resources/db-logo.png create mode 100644 ZKuP/SQL.cs create mode 100644 ZKuP/Signature.xaml create mode 100644 ZKuP/Signature.xaml.cs create mode 100644 ZKuP/ZKuP.csproj create mode 100644 ZKuP/ZKuP.ico create mode 100644 ZKuP/packages.config create mode 100644 ZKuP/signoPad.cs create mode 100644 ZKuPProject.sln diff --git a/ZKuP/AddCardUser.xaml b/ZKuP/AddCardUser.xaml new file mode 100644 index 0000000..a15db85 --- /dev/null +++ b/ZKuP/AddCardUser.xaml @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +