From b8b49aa1b6d32d520407702a57f133583422c55e Mon Sep 17 00:00:00 2001
From: IlyasValiulov <148232695+IlyasValiulov@users.noreply.github.com>
Date: Thu, 19 Sep 2024 19:52:32 +0400
Subject: [PATCH] =?UTF-8?q?=D0=A1=D0=BE=D0=B7=D0=B4=D0=B0=D0=BD=D0=B8?=
=?UTF-8?q?=D0=B5=20=D0=BF=D1=80=D0=BE=D0=B5=D0=BA=D1=82=D0=B0?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
WPF/App.xaml | 9 +++++++++
WPF/App.xaml.cs | 14 ++++++++++++++
WPF/AssemblyInfo.cs | 10 ++++++++++
WPF/MainWindow.xaml | 12 ++++++++++++
WPF/MainWindow.xaml.cs | 24 ++++++++++++++++++++++++
WPF/WPF.csproj | 11 +++++++++++
WPF/WPF.sln | 25 +++++++++++++++++++++++++
7 files changed, 105 insertions(+)
create mode 100644 WPF/App.xaml
create mode 100644 WPF/App.xaml.cs
create mode 100644 WPF/AssemblyInfo.cs
create mode 100644 WPF/MainWindow.xaml
create mode 100644 WPF/MainWindow.xaml.cs
create mode 100644 WPF/WPF.csproj
create mode 100644 WPF/WPF.sln
diff --git a/WPF/App.xaml b/WPF/App.xaml
new file mode 100644
index 0000000..e551053
--- /dev/null
+++ b/WPF/App.xaml
@@ -0,0 +1,9 @@
+
+
+
+
+
diff --git a/WPF/App.xaml.cs b/WPF/App.xaml.cs
new file mode 100644
index 0000000..0aa67fd
--- /dev/null
+++ b/WPF/App.xaml.cs
@@ -0,0 +1,14 @@
+using System.Configuration;
+using System.Data;
+using System.Windows;
+
+namespace WPF
+{
+ ///
+ /// Interaction logic for App.xaml
+ ///
+ public partial class App : Application
+ {
+ }
+
+}
diff --git a/WPF/AssemblyInfo.cs b/WPF/AssemblyInfo.cs
new file mode 100644
index 0000000..b0ec827
--- /dev/null
+++ b/WPF/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/WPF/MainWindow.xaml b/WPF/MainWindow.xaml
new file mode 100644
index 0000000..1ca86e0
--- /dev/null
+++ b/WPF/MainWindow.xaml
@@ -0,0 +1,12 @@
+
+
+
+
+
diff --git a/WPF/MainWindow.xaml.cs b/WPF/MainWindow.xaml.cs
new file mode 100644
index 0000000..33c4f07
--- /dev/null
+++ b/WPF/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 WPF
+{
+ ///
+ /// Interaction logic for MainWindow.xaml
+ ///
+ public partial class MainWindow : Window
+ {
+ public MainWindow()
+ {
+ InitializeComponent();
+ }
+ }
+}
\ No newline at end of file
diff --git a/WPF/WPF.csproj b/WPF/WPF.csproj
new file mode 100644
index 0000000..e3e33e3
--- /dev/null
+++ b/WPF/WPF.csproj
@@ -0,0 +1,11 @@
+
+
+
+ WinExe
+ net8.0-windows
+ enable
+ enable
+ true
+
+
+
diff --git a/WPF/WPF.sln b/WPF/WPF.sln
new file mode 100644
index 0000000..443bfe8
--- /dev/null
+++ b/WPF/WPF.sln
@@ -0,0 +1,25 @@
+
+Microsoft Visual Studio Solution File, Format Version 12.00
+# Visual Studio Version 17
+VisualStudioVersion = 17.10.35013.160
+MinimumVisualStudioVersion = 10.0.40219.1
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WPF", "WPF.csproj", "{5984A5DF-5C63-4910-B2A2-0697590DDF3D}"
+EndProject
+Global
+ GlobalSection(SolutionConfigurationPlatforms) = preSolution
+ Debug|Any CPU = Debug|Any CPU
+ Release|Any CPU = Release|Any CPU
+ EndGlobalSection
+ GlobalSection(ProjectConfigurationPlatforms) = postSolution
+ {5984A5DF-5C63-4910-B2A2-0697590DDF3D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+ {5984A5DF-5C63-4910-B2A2-0697590DDF3D}.Debug|Any CPU.Build.0 = Debug|Any CPU
+ {5984A5DF-5C63-4910-B2A2-0697590DDF3D}.Release|Any CPU.ActiveCfg = Release|Any CPU
+ {5984A5DF-5C63-4910-B2A2-0697590DDF3D}.Release|Any CPU.Build.0 = Release|Any CPU
+ EndGlobalSection
+ GlobalSection(SolutionProperties) = preSolution
+ HideSolutionNode = FALSE
+ EndGlobalSection
+ GlobalSection(ExtensibilityGlobals) = postSolution
+ SolutionGuid = {A01BF2B4-D42A-467A-9393-D884AF43EC42}
+ EndGlobalSection
+EndGlobal