From d07f8eab1c48723c93972929b2ce77378c8e6718 Mon Sep 17 00:00:00 2001 From: SwEdryG Date: Mon, 3 Aug 2026 21:59:33 +0300 Subject: [PATCH] =?UTF-8?q?=D0=94=D0=BE=D0=B1=D0=B0=D0=B2=D1=8C=D1=82?= =?UTF-8?q?=D0=B5=20=D1=84=D0=B0=D0=B9=D0=BB=D1=8B=20=D0=BF=D1=80=D0=BE?= =?UTF-8?q?=D0=B5=D0=BA=D1=82=D0=B0.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- TracePad.slnx | 3 + TracePad/App.xaml | 9 + TracePad/App.xaml.cs | 14 ++ TracePad/AssemblyInfo.cs | 10 ++ TracePad/MainWindow.xaml | 328 ++++++++++++++++++++++++++++++++++++ TracePad/MainWindow.xaml.cs | 23 +++ TracePad/TracePad.csproj | 11 ++ 7 files changed, 398 insertions(+) create mode 100644 TracePad.slnx create mode 100644 TracePad/App.xaml create mode 100644 TracePad/App.xaml.cs create mode 100644 TracePad/AssemblyInfo.cs create mode 100644 TracePad/MainWindow.xaml create mode 100644 TracePad/MainWindow.xaml.cs create mode 100644 TracePad/TracePad.csproj 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 @@ + + + + + + + + + + + + + + + + + + + + + +