From ba97e15fed4200a7dd695ef2f68deeec207a746c Mon Sep 17 00:00:00 2001 From: Daniel Schick Date: Sat, 18 Mar 2017 19:41:27 +0000 Subject: [PATCH] Erste Version eines ENI-2 Prototypen als WPF Anwendung --- ENI-2/ENI2/ENI2/AnmeldungenControl.xaml.cs | 29 +++ ENI-2/ENI2/ENI2/App.config | 31 +++ ENI-2/ENI2/ENI2/App.xaml | 9 + ENI-2/ENI2/ENI2/App.xaml.cs | 18 ++ ENI-2/ENI2/ENI2/ENI2.csproj | 196 ++++++++++++++++++ ENI-2/ENI2/ENI2/ENI2.licenseheader | 13 ++ ENI-2/ENI2/ENI2/ENI2.sln | 28 +++ ENI-2/ENI2/ENI2/MainWindow.xaml | 49 +++++ ENI-2/ENI2/ENI2/MainWindow.xaml.cs | 110 ++++++++++ ENI-2/ENI2/ENI2/Properties/AssemblyInfo.cs | 37 ++++ .../ENI2/Properties/Resources.Designer.cs | 83 ++++++++ ENI-2/ENI2/ENI2/Properties/Resources.resx | 127 ++++++++++++ .../ENI2/ENI2/Properties/Settings.Designer.cs | 48 +++++ ENI-2/ENI2/ENI2/Properties/Settings.settings | 12 ++ ENI-2/ENI2/ENI2/Resources/EUREPORT.png | Bin 0 -> 39695 bytes ENI-2/ENI2/ENI2/Resources/containership.ico | Bin 0 -> 123800 bytes ENI-2/ENI2/ENI2/SplashScreen.png | Bin 0 -> 8091 bytes ENI-2/ENI2/ENI2/SucheControl.xaml | 13 ++ ENI-2/ENI2/ENI2/SucheControl.xaml.cs | 29 +++ ENI-2/ENI2/ENI2/VorgaengeControl.xaml | 13 ++ ENI-2/ENI2/ENI2/VorgaengeControl.xaml.cs | 29 +++ ENI-2/ENI2/ENI2/WindowPlacement.cs | 132 ++++++++++++ ENI-2/ENI2/ENI2/anmeldungenControl.xaml | 24 +++ ENI-2/ENI2/ENI2/bsmdKey.snk | Bin 0 -> 596 bytes ENI-2/ENI2/ENI2/packages.config | 7 + Stundensheet.xlsx | Bin 26504 -> 26545 bytes nsw/Source/bsmd.database/MessageCore.cs | 21 +- 27 files changed, 1054 insertions(+), 4 deletions(-) create mode 100644 ENI-2/ENI2/ENI2/AnmeldungenControl.xaml.cs create mode 100644 ENI-2/ENI2/ENI2/App.config create mode 100644 ENI-2/ENI2/ENI2/App.xaml create mode 100644 ENI-2/ENI2/ENI2/App.xaml.cs create mode 100644 ENI-2/ENI2/ENI2/ENI2.csproj create mode 100644 ENI-2/ENI2/ENI2/ENI2.licenseheader create mode 100644 ENI-2/ENI2/ENI2/ENI2.sln create mode 100644 ENI-2/ENI2/ENI2/MainWindow.xaml create mode 100644 ENI-2/ENI2/ENI2/MainWindow.xaml.cs create mode 100644 ENI-2/ENI2/ENI2/Properties/AssemblyInfo.cs create mode 100644 ENI-2/ENI2/ENI2/Properties/Resources.Designer.cs create mode 100644 ENI-2/ENI2/ENI2/Properties/Resources.resx create mode 100644 ENI-2/ENI2/ENI2/Properties/Settings.Designer.cs create mode 100644 ENI-2/ENI2/ENI2/Properties/Settings.settings create mode 100644 ENI-2/ENI2/ENI2/Resources/EUREPORT.png create mode 100644 ENI-2/ENI2/ENI2/Resources/containership.ico create mode 100644 ENI-2/ENI2/ENI2/SplashScreen.png create mode 100644 ENI-2/ENI2/ENI2/SucheControl.xaml create mode 100644 ENI-2/ENI2/ENI2/SucheControl.xaml.cs create mode 100644 ENI-2/ENI2/ENI2/VorgaengeControl.xaml create mode 100644 ENI-2/ENI2/ENI2/VorgaengeControl.xaml.cs create mode 100644 ENI-2/ENI2/ENI2/WindowPlacement.cs create mode 100644 ENI-2/ENI2/ENI2/anmeldungenControl.xaml create mode 100644 ENI-2/ENI2/ENI2/bsmdKey.snk create mode 100644 ENI-2/ENI2/ENI2/packages.config diff --git a/ENI-2/ENI2/ENI2/AnmeldungenControl.xaml.cs b/ENI-2/ENI2/ENI2/AnmeldungenControl.xaml.cs new file mode 100644 index 00000000..c1d5a49f --- /dev/null +++ b/ENI-2/ENI2/ENI2/AnmeldungenControl.xaml.cs @@ -0,0 +1,29 @@ +// Copyright (c) 2017 Informatibüro Daniel Schick +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 ENI2 +{ + /// + /// Interaction logic for anmeldungenControl.xaml + /// + public partial class AnmeldungenControl : UserControl + { + public AnmeldungenControl() + { + InitializeComponent(); + } + } +} diff --git a/ENI-2/ENI2/ENI2/App.config b/ENI-2/ENI2/ENI2/App.config new file mode 100644 index 00000000..85221ef7 --- /dev/null +++ b/ENI-2/ENI2/ENI2/App.config @@ -0,0 +1,31 @@ + + + + + +
+ + +
+ + + + + + + + + Data Source=(localdb)\Projects;Initial Catalog=nsw;Integrated Security=True;Connect Timeout=30;Encrypt=False;TrustServerCertificate=False + + + + + + + + + + + \ No newline at end of file diff --git a/ENI-2/ENI2/ENI2/App.xaml b/ENI-2/ENI2/ENI2/App.xaml new file mode 100644 index 00000000..d31823f0 --- /dev/null +++ b/ENI-2/ENI2/ENI2/App.xaml @@ -0,0 +1,9 @@ + + + + + diff --git a/ENI-2/ENI2/ENI2/App.xaml.cs b/ENI-2/ENI2/ENI2/App.xaml.cs new file mode 100644 index 00000000..fa179ea3 --- /dev/null +++ b/ENI-2/ENI2/ENI2/App.xaml.cs @@ -0,0 +1,18 @@ +// Copyright (c) 2017 Informatibüro Daniel Schick +using System; +using System.Collections.Generic; +using System.Configuration; +using System.Data; +using System.Linq; +using System.Threading.Tasks; +using System.Windows; + +namespace ENI2 +{ + /// + /// Interaction logic for App.xaml + /// + public partial class App : Application + { + } +} diff --git a/ENI-2/ENI2/ENI2/ENI2.csproj b/ENI-2/ENI2/ENI2/ENI2.csproj new file mode 100644 index 00000000..f768d517 --- /dev/null +++ b/ENI-2/ENI2/ENI2/ENI2.csproj @@ -0,0 +1,196 @@ + + + + + Debug + AnyCPU + {67A7452A-A3F2-4199-8D98-1D95AEB7B649} + WinExe + Properties + ENI2 + ENI2 + v4.5.2 + 512 + {60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + 4 + true + publish\ + true + Disk + false + Foreground + 7 + Days + false + false + true + 0 + 1.0.0.%2a + false + false + true + + + AnyCPU + true + full + false + bin\Debug\ + DEBUG;TRACE + prompt + 4 + + + AnyCPU + pdbonly + true + bin\Release\ + TRACE + prompt + 4 + + + ENI2.App + + + true + + + bsmdKey.snk + + + + packages\log4net.2.0.8\lib\net45-full\log4net.dll + True + + + + + + + + + + + + 4.0 + + + + + + + + MSBuild:Compile + Designer + + + Properties\AssemblyProductInfo.cs + + + Properties\AssemblyProjectInfo.cs + + + Properties\AssemblyProjectKeyInfo.cs + + + SucheControl.xaml + + + VorgaengeControl.xaml + + + + Designer + MSBuild:Compile + + + MSBuild:Compile + Designer + + + AnmeldungenControl.xaml + + + App.xaml + Code + + + MainWindow.xaml + Code + + + Designer + MSBuild:Compile + + + Designer + MSBuild:Compile + + + + + Code + + + True + True + Resources.resx + + + True + Settings.settings + True + + + ResXFileCodeGenerator + Resources.Designer.cs + + + + + + SettingsSingleFileGenerator + Settings.Designer.cs + + + + + + + + + + + + + + + + + + False + Microsoft .NET Framework 4.5.2 %28x86 and x64%29 + true + + + False + .NET Framework 3.5 SP1 + false + + + + + {19945af2-379b-46a5-b27a-303b5ec1d557} + bsmd.database + + + + + \ No newline at end of file diff --git a/ENI-2/ENI2/ENI2/ENI2.licenseheader b/ENI-2/ENI2/ENI2/ENI2.licenseheader new file mode 100644 index 00000000..e06ef084 --- /dev/null +++ b/ENI-2/ENI2/ENI2/ENI2.licenseheader @@ -0,0 +1,13 @@ +extensions: designer.cs generated.cs +extensions: .cs .cpp .h +// Copyright (c) 2017 Informatibüro Daniel Schick +extensions: .aspx .ascx +<%-- +Copyright (c) 2017 Informatikbüro Daniel Schick +--%> +extensions: .vb +'Sample license text. +extensions: .xml .config .xsd + \ No newline at end of file diff --git a/ENI-2/ENI2/ENI2/ENI2.sln b/ENI-2/ENI2/ENI2/ENI2.sln new file mode 100644 index 00000000..b37e9d37 --- /dev/null +++ b/ENI-2/ENI2/ENI2/ENI2.sln @@ -0,0 +1,28 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio 14 +VisualStudioVersion = 14.0.25123.0 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ENI2", "ENI2.csproj", "{67A7452A-A3F2-4199-8D98-1D95AEB7B649}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "bsmd.database", "..\..\..\nsw\Source\bsmd.database\bsmd.database.csproj", "{19945AF2-379B-46A5-B27A-303B5EC1D557}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {67A7452A-A3F2-4199-8D98-1D95AEB7B649}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {67A7452A-A3F2-4199-8D98-1D95AEB7B649}.Debug|Any CPU.Build.0 = Debug|Any CPU + {67A7452A-A3F2-4199-8D98-1D95AEB7B649}.Release|Any CPU.ActiveCfg = Release|Any CPU + {67A7452A-A3F2-4199-8D98-1D95AEB7B649}.Release|Any CPU.Build.0 = Release|Any CPU + {19945AF2-379B-46A5-B27A-303B5EC1D557}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {19945AF2-379B-46A5-B27A-303B5EC1D557}.Debug|Any CPU.Build.0 = Debug|Any CPU + {19945AF2-379B-46A5-B27A-303B5EC1D557}.Release|Any CPU.ActiveCfg = Release|Any CPU + {19945AF2-379B-46A5-B27A-303B5EC1D557}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection +EndGlobal diff --git a/ENI-2/ENI2/ENI2/MainWindow.xaml b/ENI-2/ENI2/ENI2/MainWindow.xaml new file mode 100644 index 00000000..360f0884 --- /dev/null +++ b/ENI-2/ENI2/ENI2/MainWindow.xaml @@ -0,0 +1,49 @@ + + + + +