diff --git a/TracePad.slnx b/TracePad.slnx
new file mode 100644
index 0000000..1ec26d4
--- /dev/null
+++ b/TracePad.slnx
@@ -0,0 +1,3 @@
+
+
+
diff --git a/TracePad/App.xaml b/TracePad/App.xaml
new file mode 100644
index 0000000..f549a4c
--- /dev/null
+++ b/TracePad/App.xaml
@@ -0,0 +1,9 @@
+
+
+
+
+
diff --git a/TracePad/App.xaml.cs b/TracePad/App.xaml.cs
new file mode 100644
index 0000000..8db5b42
--- /dev/null
+++ b/TracePad/App.xaml.cs
@@ -0,0 +1,14 @@
+using System.Configuration;
+using System.Data;
+using System.Windows;
+
+namespace TracePad
+{
+ ///
+ /// Interaction logic for App.xaml
+ ///
+ public partial class App : Application
+ {
+ }
+
+}
diff --git a/TracePad/AssemblyInfo.cs b/TracePad/AssemblyInfo.cs
new file mode 100644
index 0000000..b0ec827
--- /dev/null
+++ b/TracePad/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/TracePad/MainWindow.xaml b/TracePad/MainWindow.xaml
new file mode 100644
index 0000000..fa9ed09
--- /dev/null
+++ b/TracePad/MainWindow.xaml
@@ -0,0 +1,328 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/TracePad/MainWindow.xaml.cs b/TracePad/MainWindow.xaml.cs
new file mode 100644
index 0000000..6cb74f1
--- /dev/null
+++ b/TracePad/MainWindow.xaml.cs
@@ -0,0 +1,23 @@
+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 TracePad
+{
+ public partial class MainWindow : Window
+ {
+ public MainWindow()
+ {
+ InitializeComponent();
+ }
+ public void MinimizeButtonClick(object sender, EventArgs e) => this.WindowState = WindowState.Minimized; // Minimize Button
+ public void ExitButtonClick(object sender, EventArgs e) => Application.Current.Shutdown(); // Exit Button
+ }
+}
\ No newline at end of file
diff --git a/TracePad/TracePad.csproj b/TracePad/TracePad.csproj
new file mode 100644
index 0000000..6e6420e
--- /dev/null
+++ b/TracePad/TracePad.csproj
@@ -0,0 +1,11 @@
+
+
+
+ WinExe
+ net10.0-windows
+ enable
+ enable
+ true
+
+
+