From 3d0c00b91c72cffbf18fa73301aa7db815d0ec4b Mon Sep 17 00:00:00 2001 From: asoc1al Date: Thu, 29 Feb 2024 21:20:30 +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=D1=80=D0=B5=D0=BF=D0=BE=D0=B7=D0=B8=D1=82=D0=BE=D1=80?= =?UTF-8?q?=D0=B8=D1=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- AutoWorkshop/AutoWorkshop.csproj | 11 +++ AutoWorkshop/Form1.Designer.cs | 39 ++++++++++ AutoWorkshop/Form1.cs | 10 +++ AutoWorkshop/Form1.resx | 120 +++++++++++++++++++++++++++++++ AutoWorkshop/Program.cs | 17 +++++ 5 files changed, 197 insertions(+) create mode 100644 AutoWorkshop/AutoWorkshop.csproj create mode 100644 AutoWorkshop/Form1.Designer.cs create mode 100644 AutoWorkshop/Form1.cs create mode 100644 AutoWorkshop/Form1.resx create mode 100644 AutoWorkshop/Program.cs diff --git a/AutoWorkshop/AutoWorkshop.csproj b/AutoWorkshop/AutoWorkshop.csproj new file mode 100644 index 0000000..663fdb8 --- /dev/null +++ b/AutoWorkshop/AutoWorkshop.csproj @@ -0,0 +1,11 @@ + + + + WinExe + net8.0-windows + enable + true + enable + + + \ No newline at end of file diff --git a/AutoWorkshop/Form1.Designer.cs b/AutoWorkshop/Form1.Designer.cs new file mode 100644 index 0000000..67c2e74 --- /dev/null +++ b/AutoWorkshop/Form1.Designer.cs @@ -0,0 +1,39 @@ +namespace AutoWorkshop +{ + 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() + { + this.components = new System.ComponentModel.Container(); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.ClientSize = new System.Drawing.Size(800, 450); + this.Text = "Form1"; + } + + #endregion + } +} diff --git a/AutoWorkshop/Form1.cs b/AutoWorkshop/Form1.cs new file mode 100644 index 0000000..05474dc --- /dev/null +++ b/AutoWorkshop/Form1.cs @@ -0,0 +1,10 @@ +namespace AutoWorkshop +{ + public partial class Form1 : Form + { + public Form1() + { + InitializeComponent(); + } + } +} diff --git a/AutoWorkshop/Form1.resx b/AutoWorkshop/Form1.resx new file mode 100644 index 0000000..1af7de1 --- /dev/null +++ b/AutoWorkshop/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/AutoWorkshop/Program.cs b/AutoWorkshop/Program.cs new file mode 100644 index 0000000..397b3d6 --- /dev/null +++ b/AutoWorkshop/Program.cs @@ -0,0 +1,17 @@ +namespace AutoWorkshop +{ + 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