From 268dd9a3b36c2f2c8213bd98011a958e4f956a21 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ivan=20H=C3=B6rler?= Date: Sun, 27 May 2018 22:19:09 +0200 Subject: [PATCH] first draft --- Client.sln | 25 +++++ Client/App.config | 6 ++ Client/App.xaml | 9 ++ Client/App.xaml.cs | 17 ++++ Client/Client.csproj | 116 +++++++++++++++++++++++ Client/MainWindow.xaml | 55 +++++++++++ Client/MainWindow.xaml.cs | 64 +++++++++++++ Client/Properties/AssemblyInfo.cs | 55 +++++++++++ Client/Properties/Resources.Designer.cs | 71 ++++++++++++++ Client/Properties/Resources.resx | 117 ++++++++++++++++++++++++ Client/Properties/Settings.Designer.cs | 30 ++++++ Client/Properties/Settings.settings | 7 ++ Client/packages.config | 4 + 13 files changed, 576 insertions(+) create mode 100644 Client.sln create mode 100644 Client/App.config create mode 100644 Client/App.xaml create mode 100644 Client/App.xaml.cs create mode 100644 Client/Client.csproj create mode 100644 Client/MainWindow.xaml create mode 100644 Client/MainWindow.xaml.cs create mode 100644 Client/Properties/AssemblyInfo.cs create mode 100644 Client/Properties/Resources.Designer.cs create mode 100644 Client/Properties/Resources.resx create mode 100644 Client/Properties/Settings.Designer.cs create mode 100644 Client/Properties/Settings.settings create mode 100644 Client/packages.config diff --git a/Client.sln b/Client.sln new file mode 100644 index 0000000..d96a9e3 --- /dev/null +++ b/Client.sln @@ -0,0 +1,25 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio 15 +VisualStudioVersion = 15.0.27703.2018 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Client", "Client\Client.csproj", "{7467FD6B-4743-4436-A87B-095EA46C476F}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {7467FD6B-4743-4436-A87B-095EA46C476F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {7467FD6B-4743-4436-A87B-095EA46C476F}.Debug|Any CPU.Build.0 = Debug|Any CPU + {7467FD6B-4743-4436-A87B-095EA46C476F}.Release|Any CPU.ActiveCfg = Release|Any CPU + {7467FD6B-4743-4436-A87B-095EA46C476F}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {6409E652-D47B-4598-AA8B-BC543DCA647C} + EndGlobalSection +EndGlobal diff --git a/Client/App.config b/Client/App.config new file mode 100644 index 0000000..731f6de --- /dev/null +++ b/Client/App.config @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/Client/App.xaml b/Client/App.xaml new file mode 100644 index 0000000..ab673d9 --- /dev/null +++ b/Client/App.xaml @@ -0,0 +1,9 @@ + + + + + diff --git a/Client/App.xaml.cs b/Client/App.xaml.cs new file mode 100644 index 0000000..1d01910 --- /dev/null +++ b/Client/App.xaml.cs @@ -0,0 +1,17 @@ +using System; +using System.Collections.Generic; +using System.Configuration; +using System.Data; +using System.Linq; +using System.Threading.Tasks; +using System.Windows; + +namespace Client +{ + /// + /// Interaction logic for App.xaml + /// + public partial class App : Application + { + } +} diff --git a/Client/Client.csproj b/Client/Client.csproj new file mode 100644 index 0000000..caa30ff --- /dev/null +++ b/Client/Client.csproj @@ -0,0 +1,116 @@ + + + + + Debug + AnyCPU + {7467FD6B-4743-4436-A87B-095EA46C476F} + WinExe + Client + Client + v4.6.1 + 512 + {60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + 4 + true + + + AnyCPU + true + full + false + bin\Debug\ + DEBUG;TRACE + prompt + 4 + + + AnyCPU + pdbonly + true + bin\Release\ + TRACE + prompt + 4 + + + + + + + + + + + + 4.0 + + + + + + ..\packages\Extended.Wpf.Toolkit.3.3.0\lib\net40\Xceed.Wpf.AvalonDock.dll + + + ..\packages\Extended.Wpf.Toolkit.3.3.0\lib\net40\Xceed.Wpf.AvalonDock.Themes.Aero.dll + + + ..\packages\Extended.Wpf.Toolkit.3.3.0\lib\net40\Xceed.Wpf.AvalonDock.Themes.Metro.dll + + + ..\packages\Extended.Wpf.Toolkit.3.3.0\lib\net40\Xceed.Wpf.AvalonDock.Themes.VS2010.dll + + + ..\packages\Extended.Wpf.Toolkit.3.3.0\lib\net40\Xceed.Wpf.DataGrid.dll + + + ..\packages\Extended.Wpf.Toolkit.3.3.0\lib\net40\Xceed.Wpf.Toolkit.dll + + + + + MSBuild:Compile + Designer + + + MSBuild:Compile + Designer + + + App.xaml + Code + + + MainWindow.xaml + Code + + + + + Code + + + True + True + Resources.resx + + + True + Settings.settings + True + + + ResXFileCodeGenerator + Resources.Designer.cs + + + + SettingsSingleFileGenerator + Settings.Designer.cs + + + + + + + \ No newline at end of file diff --git a/Client/MainWindow.xaml b/Client/MainWindow.xaml new file mode 100644 index 0000000..2a8843a --- /dev/null +++ b/Client/MainWindow.xaml @@ -0,0 +1,55 @@ + + + + + + +