From 34fb7ac2c373a13c87d44b4b03d181ff8b7d3337 Mon Sep 17 00:00:00 2001 From: Miguel Date: Sun, 2 Feb 2025 21:31:06 +0100 Subject: [PATCH] Add project files. --- App.xaml | 9 ++ App.xaml.cs | 14 ++ AssemblyInfo.cs | 10 ++ ConfigEditorWindow.xaml | 108 +++++++++++++++ ConfigEditorWindow.xaml.cs | 211 +++++++++++++++++++++++++++++ DirectoryCreator.csproj | 21 +++ DirectoryCreator.sln | 22 ++++ FolderConfig.cs | 21 +++ MainWindow.xaml | 47 +++++++ MainWindow.xaml.cs | 262 +++++++++++++++++++++++++++++++++++++ Window1.xaml | 12 ++ Window1.xaml.cs | 27 ++++ folderConfig.json | 47 +++++++ 13 files changed, 811 insertions(+) create mode 100644 App.xaml create mode 100644 App.xaml.cs create mode 100644 AssemblyInfo.cs create mode 100644 ConfigEditorWindow.xaml create mode 100644 ConfigEditorWindow.xaml.cs create mode 100644 DirectoryCreator.csproj create mode 100644 DirectoryCreator.sln create mode 100644 FolderConfig.cs create mode 100644 MainWindow.xaml create mode 100644 MainWindow.xaml.cs create mode 100644 Window1.xaml create mode 100644 Window1.xaml.cs create mode 100644 folderConfig.json diff --git a/App.xaml b/App.xaml new file mode 100644 index 0000000..a8442ea --- /dev/null +++ b/App.xaml @@ -0,0 +1,9 @@ + + + + + diff --git a/App.xaml.cs b/App.xaml.cs new file mode 100644 index 0000000..4d41b2b --- /dev/null +++ b/App.xaml.cs @@ -0,0 +1,14 @@ +using System.Configuration; +using System.Data; +using System.Windows; + +namespace DirectoryCreator +{ + /// + /// Interaction logic for App.xaml + /// + public partial class App : Application + { + } + +} diff --git a/AssemblyInfo.cs b/AssemblyInfo.cs new file mode 100644 index 0000000..b0ec827 --- /dev/null +++ b/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/ConfigEditorWindow.xaml b/ConfigEditorWindow.xaml new file mode 100644 index 0000000..eec762c --- /dev/null +++ b/ConfigEditorWindow.xaml @@ -0,0 +1,108 @@ + + + + + + + + + + + + + + + + + + + + + + + + +