From b87344f1034a25e5b088269017de314771aae277 Mon Sep 17 00:00:00 2001 From: TK50P <127497974+TK50P@users.noreply.github.com> Date: Thu, 15 Aug 2024 00:14:01 +0900 Subject: [PATCH] Add files via upload --- NoMoreDWM.sln | 25 + NoMoreDWM/App.xaml | 9 + NoMoreDWM/App.xaml.cs | 16 + NoMoreDWM/MainWindow.xaml | 50 ++ NoMoreDWM/MainWindow.xaml.cs | 615 ++++++++++++++++++ NoMoreDWM/NoMoreDWM.csproj | 99 +++ NoMoreDWM/Properties/AssemblyInfo.cs | 55 ++ NoMoreDWM/Properties/Resources.Designer.cs | 63 ++ NoMoreDWM/Properties/Resources.resx | 117 ++++ NoMoreDWM/Properties/Settings.Designer.cs | 26 + NoMoreDWM/Properties/Settings.settings | 7 + NoMoreDWM/app.config | 3 + NoMoreDWM/app.manifest | 24 + NoMoreDWM/obj/Debug/App.g.i.cs | 70 ++ .../DesignTimeResolveAssemblyReferences.cache | Bin 0 -> 205 bytes ...gnTimeResolveAssemblyReferencesInput.cache | Bin 0 -> 7272 bytes NoMoreDWM/obj/Debug/MainWindow.g.i.cs | 111 ++++ .../NoMoreDWM.csproj.FileListAbsolute.txt | 0 .../obj/Debug/NoMoreDWM_MarkupCompile.i.cache | 20 + .../Properties.Resources.Designer.cs.dll | Bin 0 -> 4096 bytes NoMoreDWM/obj/Release/App.g.i.cs | 70 ++ NoMoreDWM/obj/Release/MainWindow.g.i.cs | 111 ++++ .../NoMoreDWM.csproj.FileListAbsolute.txt | 0 .../Properties.Resources.Designer.cs.dll | Bin 0 -> 4096 bytes 24 files changed, 1491 insertions(+) create mode 100644 NoMoreDWM.sln create mode 100644 NoMoreDWM/App.xaml create mode 100644 NoMoreDWM/App.xaml.cs create mode 100644 NoMoreDWM/MainWindow.xaml create mode 100644 NoMoreDWM/MainWindow.xaml.cs create mode 100644 NoMoreDWM/NoMoreDWM.csproj create mode 100644 NoMoreDWM/Properties/AssemblyInfo.cs create mode 100644 NoMoreDWM/Properties/Resources.Designer.cs create mode 100644 NoMoreDWM/Properties/Resources.resx create mode 100644 NoMoreDWM/Properties/Settings.Designer.cs create mode 100644 NoMoreDWM/Properties/Settings.settings create mode 100644 NoMoreDWM/app.config create mode 100644 NoMoreDWM/app.manifest create mode 100644 NoMoreDWM/obj/Debug/App.g.i.cs create mode 100644 NoMoreDWM/obj/Debug/DesignTimeResolveAssemblyReferences.cache create mode 100644 NoMoreDWM/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache create mode 100644 NoMoreDWM/obj/Debug/MainWindow.g.i.cs create mode 100644 NoMoreDWM/obj/Debug/NoMoreDWM.csproj.FileListAbsolute.txt create mode 100644 NoMoreDWM/obj/Debug/NoMoreDWM_MarkupCompile.i.cache create mode 100644 NoMoreDWM/obj/Debug/TempPE/Properties.Resources.Designer.cs.dll create mode 100644 NoMoreDWM/obj/Release/App.g.i.cs create mode 100644 NoMoreDWM/obj/Release/MainWindow.g.i.cs create mode 100644 NoMoreDWM/obj/Release/NoMoreDWM.csproj.FileListAbsolute.txt create mode 100644 NoMoreDWM/obj/Release/TempPE/Properties.Resources.Designer.cs.dll diff --git a/NoMoreDWM.sln b/NoMoreDWM.sln new file mode 100644 index 0000000..cbd487b --- /dev/null +++ b/NoMoreDWM.sln @@ -0,0 +1,25 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 17 +VisualStudioVersion = 17.6.34931.59 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "NoMoreDWM", "NoMoreDWM\NoMoreDWM.csproj", "{4DA82524-D71B-4045-BD26-6740262DADF7}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {4DA82524-D71B-4045-BD26-6740262DADF7}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {4DA82524-D71B-4045-BD26-6740262DADF7}.Debug|Any CPU.Build.0 = Debug|Any CPU + {4DA82524-D71B-4045-BD26-6740262DADF7}.Release|Any CPU.ActiveCfg = Release|Any CPU + {4DA82524-D71B-4045-BD26-6740262DADF7}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {3F37ED43-FAFD-4832-90E6-CD50D24D3D9D} + EndGlobalSection +EndGlobal diff --git a/NoMoreDWM/App.xaml b/NoMoreDWM/App.xaml new file mode 100644 index 0000000..71c0f51 --- /dev/null +++ b/NoMoreDWM/App.xaml @@ -0,0 +1,9 @@ + + + + + diff --git a/NoMoreDWM/App.xaml.cs b/NoMoreDWM/App.xaml.cs new file mode 100644 index 0000000..8ce2fdf --- /dev/null +++ b/NoMoreDWM/App.xaml.cs @@ -0,0 +1,16 @@ +using System; +using System.Collections.Generic; +using System.Configuration; +using System.Data; +using System.Linq; +using System.Windows; + +namespace NoMoreDWM +{ + /// + /// Interaction logic for App.xaml + /// + public partial class App : Application + { + } +} diff --git a/NoMoreDWM/MainWindow.xaml b/NoMoreDWM/MainWindow.xaml new file mode 100644 index 0000000..6e93465 --- /dev/null +++ b/NoMoreDWM/MainWindow.xaml @@ -0,0 +1,50 @@ + + + + +