diff --git a/WpfApp1.sln b/WpfApp1.sln
new file mode 100644
index 0000000..0e8dc0b
--- /dev/null
+++ b/WpfApp1.sln
@@ -0,0 +1,25 @@
+
+Microsoft Visual Studio Solution File, Format Version 12.00
+# Visual Studio Version 16
+VisualStudioVersion = 16.0.31424.327
+MinimumVisualStudioVersion = 10.0.40219.1
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WpfApp1", "WpfApp1\WpfApp1.csproj", "{514D830F-CCD6-4ADE-96F2-232C718D9BBC}"
+EndProject
+Global
+ GlobalSection(SolutionConfigurationPlatforms) = preSolution
+ Debug|Any CPU = Debug|Any CPU
+ Release|Any CPU = Release|Any CPU
+ EndGlobalSection
+ GlobalSection(ProjectConfigurationPlatforms) = postSolution
+ {514D830F-CCD6-4ADE-96F2-232C718D9BBC}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+ {514D830F-CCD6-4ADE-96F2-232C718D9BBC}.Debug|Any CPU.Build.0 = Debug|Any CPU
+ {514D830F-CCD6-4ADE-96F2-232C718D9BBC}.Release|Any CPU.ActiveCfg = Release|Any CPU
+ {514D830F-CCD6-4ADE-96F2-232C718D9BBC}.Release|Any CPU.Build.0 = Release|Any CPU
+ EndGlobalSection
+ GlobalSection(SolutionProperties) = preSolution
+ HideSolutionNode = FALSE
+ EndGlobalSection
+ GlobalSection(ExtensibilityGlobals) = postSolution
+ SolutionGuid = {169891F4-0C16-4020-9581-5AC90ADE6FD5}
+ EndGlobalSection
+EndGlobal
diff --git a/WpfApp1/App.xaml b/WpfApp1/App.xaml
new file mode 100644
index 0000000..2e70522
--- /dev/null
+++ b/WpfApp1/App.xaml
@@ -0,0 +1,9 @@
+
+
+
+
+
diff --git a/WpfApp1/App.xaml.cs b/WpfApp1/App.xaml.cs
new file mode 100644
index 0000000..909eaa5
--- /dev/null
+++ b/WpfApp1/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 WpfApp1
+{
+ ///
+ /// Interaction logic for App.xaml
+ ///
+ public partial class App : Application
+ {
+ }
+}
diff --git a/WpfApp1/AssemblyInfo.cs b/WpfApp1/AssemblyInfo.cs
new file mode 100644
index 0000000..8b5504e
--- /dev/null
+++ b/WpfApp1/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/WpfApp1/MainWindow.xaml b/WpfApp1/MainWindow.xaml
new file mode 100644
index 0000000..cfada06
--- /dev/null
+++ b/WpfApp1/MainWindow.xaml
@@ -0,0 +1,12 @@
+
+
+
+
+
diff --git a/WpfApp1/MainWindow.xaml.cs b/WpfApp1/MainWindow.xaml.cs
new file mode 100644
index 0000000..83de7a5
--- /dev/null
+++ b/WpfApp1/MainWindow.xaml.cs
@@ -0,0 +1,28 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+using System.Windows;
+using System.Windows.Controls;
+using System.Windows.Data;
+using System.Windows.Documents;
+using System.Windows.Input;
+using System.Windows.Media;
+using System.Windows.Media.Imaging;
+using System.Windows.Navigation;
+using System.Windows.Shapes;
+
+namespace WpfApp1
+{
+ ///
+ /// Interaction logic for MainWindow.xaml
+ ///
+ public partial class MainWindow : Window
+ {
+ public MainWindow()
+ {
+ InitializeComponent();
+ }
+ }
+}
diff --git a/WpfApp1/WpfApp1.csproj b/WpfApp1/WpfApp1.csproj
new file mode 100644
index 0000000..407932c
--- /dev/null
+++ b/WpfApp1/WpfApp1.csproj
@@ -0,0 +1,9 @@
+
+
+
+ WinExe
+ net5.0-windows
+ true
+
+
+