From 33d2ae1b8487247a7cb466a39b84b97542ebabb6 Mon Sep 17 00:00:00 2001 From: Lorenz Stechauner Date: Sat, 4 Feb 2023 23:57:38 +0100 Subject: [PATCH] Init --- .gitignore | 2 + WGneu.sln | 25 +++++ WGneu/App.xaml | 9 ++ WGneu/App.xaml.cs | 17 ++++ WGneu/AssemblyInfo.cs | 10 ++ WGneu/BankDetailsWindow.xaml | 38 +++++++ WGneu/BankDetailsWindow.xaml.cs | 171 ++++++++++++++++++++++++++++++++ WGneu/Country.cs | 25 +++++ WGneu/Gradation.cs | 63 ++++++++++++ WGneu/MainWindow.xaml | 22 ++++ WGneu/MainWindow.xaml.cs | 62 ++++++++++++ WGneu/WGContext.cs | 19 ++++ WGneu/WGneu.csproj | 15 +++ WGneu/WGneu.csproj.user | 22 ++++ 14 files changed, 500 insertions(+) create mode 100644 .gitignore create mode 100644 WGneu.sln create mode 100644 WGneu/App.xaml create mode 100644 WGneu/App.xaml.cs create mode 100644 WGneu/AssemblyInfo.cs create mode 100644 WGneu/BankDetailsWindow.xaml create mode 100644 WGneu/BankDetailsWindow.xaml.cs create mode 100644 WGneu/Country.cs create mode 100644 WGneu/Gradation.cs create mode 100644 WGneu/MainWindow.xaml create mode 100644 WGneu/MainWindow.xaml.cs create mode 100644 WGneu/WGContext.cs create mode 100644 WGneu/WGneu.csproj create mode 100644 WGneu/WGneu.csproj.user diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..eeb2be6 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +WGneu/obj/ +WGneu/bin/ diff --git a/WGneu.sln b/WGneu.sln new file mode 100644 index 0000000..acf248d --- /dev/null +++ b/WGneu.sln @@ -0,0 +1,25 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 17 +VisualStudioVersion = 17.3.32929.385 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WGneu", "WGneu\WGneu.csproj", "{00868460-16F6-4B48-AA9B-998F6263693B}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {00868460-16F6-4B48-AA9B-998F6263693B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {00868460-16F6-4B48-AA9B-998F6263693B}.Debug|Any CPU.Build.0 = Debug|Any CPU + {00868460-16F6-4B48-AA9B-998F6263693B}.Release|Any CPU.ActiveCfg = Release|Any CPU + {00868460-16F6-4B48-AA9B-998F6263693B}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {D8CCFDDD-517C-4462-BDDD-C69B3364A4FB} + EndGlobalSection +EndGlobal diff --git a/WGneu/App.xaml b/WGneu/App.xaml new file mode 100644 index 0000000..c93f81a --- /dev/null +++ b/WGneu/App.xaml @@ -0,0 +1,9 @@ + + + + + diff --git a/WGneu/App.xaml.cs b/WGneu/App.xaml.cs new file mode 100644 index 0000000..17070a7 --- /dev/null +++ b/WGneu/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 WGneu +{ + /// + /// Interaction logic for App.xaml + /// + public partial class App : Application + { + } +} diff --git a/WGneu/AssemblyInfo.cs b/WGneu/AssemblyInfo.cs new file mode 100644 index 0000000..8b5504e --- /dev/null +++ b/WGneu/AssemblyInfo.cs @@ -0,0 +1,10 @@ +using System.Windows; + +[assembly: ThemeInfo( + ResourceDictionaryLocation.None, //where theme specific resource dictionaries are located + //(used if a resource is not found in the page, + // or application resource dictionaries) + ResourceDictionaryLocation.SourceAssembly //where the generic resource dictionary is located + //(used if a resource is not found in the page, + // app, or any theme specific resource dictionaries) +)] diff --git a/WGneu/BankDetailsWindow.xaml b/WGneu/BankDetailsWindow.xaml new file mode 100644 index 0000000..8c4b8aa --- /dev/null +++ b/WGneu/BankDetailsWindow.xaml @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +