From b5f0c3fc195c19b1cc1d73efe04ac410cbd023da Mon Sep 17 00:00:00 2001
From: Cj <161484149+CJ-SPT@users.noreply.github.com>
Date: Fri, 21 Jun 2024 01:34:41 -0400
Subject: [PATCH] Add WPF project, Initial work
---
ReCodeItWPF/App.xaml | 9 +++++
ReCodeItWPF/App.xaml.cs | 14 ++++++++
ReCodeItWPF/AssemblyInfo.cs | 10 ++++++
ReCodeItWPF/MainWindow.xaml | 60 ++++++++++++++++++++++++++++++++++
ReCodeItWPF/MainWindow.xaml.cs | 24 ++++++++++++++
ReCodeItWPF/ReCodeItWPF.csproj | 11 +++++++
RecodeIt.sln | 22 +++++++++++++
7 files changed, 150 insertions(+)
create mode 100644 ReCodeItWPF/App.xaml
create mode 100644 ReCodeItWPF/App.xaml.cs
create mode 100644 ReCodeItWPF/AssemblyInfo.cs
create mode 100644 ReCodeItWPF/MainWindow.xaml
create mode 100644 ReCodeItWPF/MainWindow.xaml.cs
create mode 100644 ReCodeItWPF/ReCodeItWPF.csproj
diff --git a/ReCodeItWPF/App.xaml b/ReCodeItWPF/App.xaml
new file mode 100644
index 0000000..636ea5b
--- /dev/null
+++ b/ReCodeItWPF/App.xaml
@@ -0,0 +1,9 @@
+
+
+
+
+
diff --git a/ReCodeItWPF/App.xaml.cs b/ReCodeItWPF/App.xaml.cs
new file mode 100644
index 0000000..c741675
--- /dev/null
+++ b/ReCodeItWPF/App.xaml.cs
@@ -0,0 +1,14 @@
+using System.Configuration;
+using System.Data;
+using System.Windows;
+
+namespace ReCodeItWPF
+{
+ ///
+ /// Interaction logic for App.xaml
+ ///
+ public partial class App : Application
+ {
+ }
+
+}
diff --git a/ReCodeItWPF/AssemblyInfo.cs b/ReCodeItWPF/AssemblyInfo.cs
new file mode 100644
index 0000000..b0ec827
--- /dev/null
+++ b/ReCodeItWPF/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/ReCodeItWPF/MainWindow.xaml b/ReCodeItWPF/MainWindow.xaml
new file mode 100644
index 0000000..958c6dd
--- /dev/null
+++ b/ReCodeItWPF/MainWindow.xaml
@@ -0,0 +1,60 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ReCodeItWPF/MainWindow.xaml.cs b/ReCodeItWPF/MainWindow.xaml.cs
new file mode 100644
index 0000000..1c216c8
--- /dev/null
+++ b/ReCodeItWPF/MainWindow.xaml.cs
@@ -0,0 +1,24 @@
+using System.Text;
+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 ReCodeItWPF
+{
+ ///
+ /// Interaction logic for MainWindow.xaml
+ ///
+ public partial class MainWindow : Window
+ {
+ public MainWindow()
+ {
+ InitializeComponent();
+ }
+ }
+}
\ No newline at end of file
diff --git a/ReCodeItWPF/ReCodeItWPF.csproj b/ReCodeItWPF/ReCodeItWPF.csproj
new file mode 100644
index 0000000..e3e33e3
--- /dev/null
+++ b/ReCodeItWPF/ReCodeItWPF.csproj
@@ -0,0 +1,11 @@
+
+
+
+ WinExe
+ net8.0-windows
+ enable
+ enable
+ true
+
+
+
diff --git a/RecodeIt.sln b/RecodeIt.sln
index e6edcaf..697148f 100644
--- a/RecodeIt.sln
+++ b/RecodeIt.sln
@@ -9,6 +9,8 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ReCodeItLib", "RecodeItLib\
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ReCodeIt", "ReCodeItCLI\ReCodeIt.csproj", "{E404EC0B-06D2-4964-8ABA-A634F259655C}"
EndProject
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ReCodeItWPF", "ReCodeItWPF\ReCodeItWPF.csproj", "{E57C9B44-D0A1-4224-BF94-1E3ECEB3A4C6}"
+EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
@@ -83,6 +85,26 @@ Global
{E404EC0B-06D2-4964-8ABA-A634F259655C}.Release|x64.Build.0 = Release|Any CPU
{E404EC0B-06D2-4964-8ABA-A634F259655C}.Release|x86.ActiveCfg = Release|Any CPU
{E404EC0B-06D2-4964-8ABA-A634F259655C}.Release|x86.Build.0 = Release|Any CPU
+ {E57C9B44-D0A1-4224-BF94-1E3ECEB3A4C6}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+ {E57C9B44-D0A1-4224-BF94-1E3ECEB3A4C6}.Debug|Any CPU.Build.0 = Debug|Any CPU
+ {E57C9B44-D0A1-4224-BF94-1E3ECEB3A4C6}.Debug|ARM.ActiveCfg = Debug|Any CPU
+ {E57C9B44-D0A1-4224-BF94-1E3ECEB3A4C6}.Debug|ARM.Build.0 = Debug|Any CPU
+ {E57C9B44-D0A1-4224-BF94-1E3ECEB3A4C6}.Debug|ARM64.ActiveCfg = Debug|Any CPU
+ {E57C9B44-D0A1-4224-BF94-1E3ECEB3A4C6}.Debug|ARM64.Build.0 = Debug|Any CPU
+ {E57C9B44-D0A1-4224-BF94-1E3ECEB3A4C6}.Debug|x64.ActiveCfg = Debug|Any CPU
+ {E57C9B44-D0A1-4224-BF94-1E3ECEB3A4C6}.Debug|x64.Build.0 = Debug|Any CPU
+ {E57C9B44-D0A1-4224-BF94-1E3ECEB3A4C6}.Debug|x86.ActiveCfg = Debug|Any CPU
+ {E57C9B44-D0A1-4224-BF94-1E3ECEB3A4C6}.Debug|x86.Build.0 = Debug|Any CPU
+ {E57C9B44-D0A1-4224-BF94-1E3ECEB3A4C6}.Release|Any CPU.ActiveCfg = Release|Any CPU
+ {E57C9B44-D0A1-4224-BF94-1E3ECEB3A4C6}.Release|Any CPU.Build.0 = Release|Any CPU
+ {E57C9B44-D0A1-4224-BF94-1E3ECEB3A4C6}.Release|ARM.ActiveCfg = Release|Any CPU
+ {E57C9B44-D0A1-4224-BF94-1E3ECEB3A4C6}.Release|ARM.Build.0 = Release|Any CPU
+ {E57C9B44-D0A1-4224-BF94-1E3ECEB3A4C6}.Release|ARM64.ActiveCfg = Release|Any CPU
+ {E57C9B44-D0A1-4224-BF94-1E3ECEB3A4C6}.Release|ARM64.Build.0 = Release|Any CPU
+ {E57C9B44-D0A1-4224-BF94-1E3ECEB3A4C6}.Release|x64.ActiveCfg = Release|Any CPU
+ {E57C9B44-D0A1-4224-BF94-1E3ECEB3A4C6}.Release|x64.Build.0 = Release|Any CPU
+ {E57C9B44-D0A1-4224-BF94-1E3ECEB3A4C6}.Release|x86.ActiveCfg = Release|Any CPU
+ {E57C9B44-D0A1-4224-BF94-1E3ECEB3A4C6}.Release|x86.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE