diff --git a/Windows_app.slnx b/Windows_app.slnx
new file mode 100644
index 0000000..f6547b0
--- /dev/null
+++ b/Windows_app.slnx
@@ -0,0 +1,3 @@
+
+
+
diff --git a/Windows_app/Form1.Designer.cs b/Windows_app/Form1.Designer.cs
new file mode 100644
index 0000000..42002af
--- /dev/null
+++ b/Windows_app/Form1.Designer.cs
@@ -0,0 +1,59 @@
+namespace Windows_app
+{
+ partial class Form1
+ {
+ ///
+ /// Required designer variable.
+ ///
+ private System.ComponentModel.IContainer components = null;
+
+ ///
+ /// Clean up any resources being used.
+ ///
+ /// true if managed resources should be disposed; otherwise, false.
+ protected override void Dispose(bool disposing)
+ {
+ if (disposing && (components != null))
+ {
+ components.Dispose();
+ }
+ base.Dispose(disposing);
+ }
+
+ #region Windows Form Designer generated code
+
+ ///
+ /// Required method for Designer support - do not modify
+ /// the contents of this method with the code editor.
+ ///
+ private void InitializeComponent()
+ {
+ button1 = new Button();
+ SuspendLayout();
+ //
+ // button1
+ //
+ button1.Location = new Point(504, 174);
+ button1.Name = "button1";
+ button1.Size = new Size(501, 96);
+ button1.TabIndex = 0;
+ button1.Text = "button1";
+ button1.UseVisualStyleBackColor = true;
+ button1.Click += button1_Click;
+ //
+ // Form1
+ //
+ AutoScaleDimensions = new SizeF(7F, 15F);
+ AutoScaleMode = AutoScaleMode.Font;
+ ClientSize = new Size(1404, 749);
+ Controls.Add(button1);
+ Name = "Form1";
+ Text = "Form1";
+ ResumeLayout(false);
+ }
+
+ #endregion
+
+ private Button button1;
+ }
+}
diff --git a/Windows_app/Form1.cs b/Windows_app/Form1.cs
new file mode 100644
index 0000000..8fca3ab
--- /dev/null
+++ b/Windows_app/Form1.cs
@@ -0,0 +1,15 @@
+namespace Windows_app
+{
+ public partial class Form1 : Form
+ {
+ public Form1()
+ {
+ InitializeComponent();
+ }
+
+ private void button1_Click(object sender, EventArgs e)
+ {
+
+ }
+ }
+}
diff --git a/Windows_app/Form1.resx b/Windows_app/Form1.resx
new file mode 100644
index 0000000..8b2ff64
--- /dev/null
+++ b/Windows_app/Form1.resx
@@ -0,0 +1,120 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
\ No newline at end of file
diff --git a/Windows_app/Program.cs b/Windows_app/Program.cs
new file mode 100644
index 0000000..0478404
--- /dev/null
+++ b/Windows_app/Program.cs
@@ -0,0 +1,17 @@
+namespace Windows_app
+{
+ internal static class Program
+ {
+ ///
+ /// The main entry point for the application.
+ ///
+ [STAThread]
+ static void Main()
+ {
+ // To customize application configuration such as set high DPI settings or default font,
+ // see https://aka.ms/applicationconfiguration.
+ ApplicationConfiguration.Initialize();
+ Application.Run(new Form1());
+ }
+ }
+}
\ No newline at end of file
diff --git a/Windows_app/Windows_app.csproj b/Windows_app/Windows_app.csproj
new file mode 100644
index 0000000..5151c0a
--- /dev/null
+++ b/Windows_app/Windows_app.csproj
@@ -0,0 +1,11 @@
+
+
+
+ WinExe
+ net10.0-windows
+ enable
+ true
+ enable
+
+
+
\ No newline at end of file