From 41a5baa1ebc2256abb2087237806242203c62e9f Mon Sep 17 00:00:00 2001 From: Baryshev Dmitry Date: Sat, 2 Nov 2024 19:41:16 +0400 Subject: [PATCH] =?UTF-8?q?=D0=BD=D0=B0=D1=87=D0=B0=D0=BB=D0=BE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ProjectGarage/Form1.Designer.cs | 39 ++++++++++ ProjectGarage/Form1.cs | 10 +++ ProjectGarage/Form1.resx | 120 +++++++++++++++++++++++++++++ ProjectGarage/Program.cs | 17 ++++ ProjectGarage/ProjectGarage.csproj | 11 +++ ProjectGarage/ProjectGarage.sln | 25 ++++++ 6 files changed, 222 insertions(+) create mode 100644 ProjectGarage/Form1.Designer.cs create mode 100644 ProjectGarage/Form1.cs create mode 100644 ProjectGarage/Form1.resx create mode 100644 ProjectGarage/Program.cs create mode 100644 ProjectGarage/ProjectGarage.csproj create mode 100644 ProjectGarage/ProjectGarage.sln diff --git a/ProjectGarage/Form1.Designer.cs b/ProjectGarage/Form1.Designer.cs new file mode 100644 index 0000000..f4eeafd --- /dev/null +++ b/ProjectGarage/Form1.Designer.cs @@ -0,0 +1,39 @@ +namespace ProjectGarage +{ + 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/ProjectGarage/Form1.cs b/ProjectGarage/Form1.cs new file mode 100644 index 0000000..8f726a8 --- /dev/null +++ b/ProjectGarage/Form1.cs @@ -0,0 +1,10 @@ +namespace ProjectGarage +{ + public partial class Form1 : Form + { + public Form1() + { + InitializeComponent(); + } + } +} diff --git a/ProjectGarage/Form1.resx b/ProjectGarage/Form1.resx new file mode 100644 index 0000000..1af7de1 --- /dev/null +++ b/ProjectGarage/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/ProjectGarage/Program.cs b/ProjectGarage/Program.cs new file mode 100644 index 0000000..e95d0ba --- /dev/null +++ b/ProjectGarage/Program.cs @@ -0,0 +1,17 @@ +namespace ProjectGarage +{ + 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/ProjectGarage/ProjectGarage.csproj b/ProjectGarage/ProjectGarage.csproj new file mode 100644 index 0000000..663fdb8 --- /dev/null +++ b/ProjectGarage/ProjectGarage.csproj @@ -0,0 +1,11 @@ + + + + WinExe + net8.0-windows + enable + true + enable + + + \ No newline at end of file diff --git a/ProjectGarage/ProjectGarage.sln b/ProjectGarage/ProjectGarage.sln new file mode 100644 index 0000000..5c33f68 --- /dev/null +++ b/ProjectGarage/ProjectGarage.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}") = "ProjectGarage", "ProjectGarage.csproj", "{D85D655A-6176-4EDA-8213-36757A1A63BF}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {D85D655A-6176-4EDA-8213-36757A1A63BF}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {D85D655A-6176-4EDA-8213-36757A1A63BF}.Debug|Any CPU.Build.0 = Debug|Any CPU + {D85D655A-6176-4EDA-8213-36757A1A63BF}.Release|Any CPU.ActiveCfg = Release|Any CPU + {D85D655A-6176-4EDA-8213-36757A1A63BF}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {E7CE1C05-D427-434F-82E2-E3E251642FD2} + EndGlobalSection +EndGlobal