From 744e3bac0c92852136bf5696d740c29bff3885e8 Mon Sep 17 00:00:00 2001 From: Jorg Tretter Date: Tue, 18 May 2021 08:06:43 -0500 Subject: [PATCH] Initial Checkin --- Organizer.sln | 25 +++++ Organizer/App.xaml | 9 ++ Organizer/App.xaml.cs | 15 +++ Organizer/AssemblyInfo.cs | 10 ++ Organizer/MainWindow.xaml | 28 +++++ Organizer/MainWindow.xaml.cs | 137 +++++++++++++++++++++++ Organizer/Organizer.csproj | 18 +++ Organizer/Properties/launchSettings.json | 8 ++ Organizer/SingleFile.cs | 35 ++++++ 9 files changed, 285 insertions(+) create mode 100644 Organizer.sln create mode 100644 Organizer/App.xaml create mode 100644 Organizer/App.xaml.cs create mode 100644 Organizer/AssemblyInfo.cs create mode 100644 Organizer/MainWindow.xaml create mode 100644 Organizer/MainWindow.xaml.cs create mode 100644 Organizer/Organizer.csproj create mode 100644 Organizer/Properties/launchSettings.json create mode 100644 Organizer/SingleFile.cs diff --git a/Organizer.sln b/Organizer.sln new file mode 100644 index 0000000..5e28673 --- /dev/null +++ b/Organizer.sln @@ -0,0 +1,25 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 16 +VisualStudioVersion = 16.0.31205.134 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Organizer", "Organizer\Organizer.csproj", "{51AFE729-134D-4EB5-91CE-95DD4565B4FE}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {51AFE729-134D-4EB5-91CE-95DD4565B4FE}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {51AFE729-134D-4EB5-91CE-95DD4565B4FE}.Debug|Any CPU.Build.0 = Debug|Any CPU + {51AFE729-134D-4EB5-91CE-95DD4565B4FE}.Release|Any CPU.ActiveCfg = Release|Any CPU + {51AFE729-134D-4EB5-91CE-95DD4565B4FE}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {95F696C9-76B6-4E34-82E9-D96FCFF58A9D} + EndGlobalSection +EndGlobal diff --git a/Organizer/App.xaml b/Organizer/App.xaml new file mode 100644 index 0000000..0a249bb --- /dev/null +++ b/Organizer/App.xaml @@ -0,0 +1,9 @@ + + + + + diff --git a/Organizer/App.xaml.cs b/Organizer/App.xaml.cs new file mode 100644 index 0000000..8049de5 --- /dev/null +++ b/Organizer/App.xaml.cs @@ -0,0 +1,15 @@ +using System; +using System.Collections.Generic; +using System.Configuration; +using System.Data; +using System.Linq; +using System.Threading.Tasks; +using System.Windows; + +namespace Organizer { + /// + /// Interaction logic for App.xaml + /// + public partial class App : Application { + } +} diff --git a/Organizer/AssemblyInfo.cs b/Organizer/AssemblyInfo.cs new file mode 100644 index 0000000..74087a1 --- /dev/null +++ b/Organizer/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/Organizer/MainWindow.xaml b/Organizer/MainWindow.xaml new file mode 100644 index 0000000..2272bbe --- /dev/null +++ b/Organizer/MainWindow.xaml @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + +