From 62704bfcfd1d8c2918741bd649278cf1a26df53f Mon Sep 17 00:00:00 2001 From: TK50P <127497974+TK50P@users.noreply.github.com> Date: Thu, 13 Jun 2024 21:39:43 +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 | 147 ++++++++++++++++++ NoMoreDWM/NoMoreDWM.csproj | 89 +++++++++++ NoMoreDWM/Properties/AssemblyInfo.cs | 55 +++++++ NoMoreDWM/Properties/Resources.Designer.cs | 71 +++++++++ NoMoreDWM/Properties/Resources.resx | 117 ++++++++++++++ NoMoreDWM/Properties/Settings.Designer.cs | 30 ++++ NoMoreDWM/Properties/Settings.settings | 7 + NoMoreDWM/obj/Debug/App.g.cs | 69 ++++++++ NoMoreDWM/obj/Debug/App.g.i.cs | 69 ++++++++ ...gnTimeResolveAssemblyReferencesInput.cache | Bin 0 -> 6927 bytes NoMoreDWM/obj/Debug/MainWindow.baml | Bin 0 -> 1580 bytes NoMoreDWM/obj/Debug/MainWindow.g.cs | 110 +++++++++++++ NoMoreDWM/obj/Debug/MainWindow.g.i.cs | 110 +++++++++++++ .../NoMoreDWM.Properties.Resources.resources | Bin 0 -> 180 bytes .../NoMoreDWM.csproj.AssemblyReference.cache | Bin 0 -> 5623 bytes .../NoMoreDWM.csproj.CoreCompileInputs.cache | 1 + .../NoMoreDWM.csproj.FileListAbsolute.txt | 13 ++ .../NoMoreDWM.csproj.GenerateResource.cache | Bin 0 -> 789 bytes NoMoreDWM/obj/Debug/NoMoreDWM.exe | Bin 0 -> 22528 bytes NoMoreDWM/obj/Debug/NoMoreDWM.g.resources | Bin 0 -> 1808 bytes NoMoreDWM/obj/Debug/NoMoreDWM.pdb | Bin 0 -> 36352 bytes .../obj/Debug/NoMoreDWM_MarkupCompile.cache | 20 +++ .../obj/Debug/NoMoreDWM_MarkupCompile.i.cache | 20 +++ .../obj/Debug/NoMoreDWM_MarkupCompile.i.lref | 4 + 28 files changed, 1032 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/obj/Debug/App.g.cs create mode 100644 NoMoreDWM/obj/Debug/App.g.i.cs create mode 100644 NoMoreDWM/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache create mode 100644 NoMoreDWM/obj/Debug/MainWindow.baml create mode 100644 NoMoreDWM/obj/Debug/MainWindow.g.cs create mode 100644 NoMoreDWM/obj/Debug/MainWindow.g.i.cs create mode 100644 NoMoreDWM/obj/Debug/NoMoreDWM.Properties.Resources.resources create mode 100644 NoMoreDWM/obj/Debug/NoMoreDWM.csproj.AssemblyReference.cache create mode 100644 NoMoreDWM/obj/Debug/NoMoreDWM.csproj.CoreCompileInputs.cache create mode 100644 NoMoreDWM/obj/Debug/NoMoreDWM.csproj.FileListAbsolute.txt create mode 100644 NoMoreDWM/obj/Debug/NoMoreDWM.csproj.GenerateResource.cache create mode 100644 NoMoreDWM/obj/Debug/NoMoreDWM.exe create mode 100644 NoMoreDWM/obj/Debug/NoMoreDWM.g.resources create mode 100644 NoMoreDWM/obj/Debug/NoMoreDWM.pdb create mode 100644 NoMoreDWM/obj/Debug/NoMoreDWM_MarkupCompile.cache create mode 100644 NoMoreDWM/obj/Debug/NoMoreDWM_MarkupCompile.i.cache create mode 100644 NoMoreDWM/obj/Debug/NoMoreDWM_MarkupCompile.i.lref 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..141638f --- /dev/null +++ b/NoMoreDWM/MainWindow.xaml @@ -0,0 +1,50 @@ + + + + +