From ecdd4e15a3c9a4b7d7169fef5584fe2773f17706 Mon Sep 17 00:00:00 2001 From: prodigygirl Date: Mon, 12 Sep 2022 17:47:34 +0400 Subject: [PATCH] =?UTF-8?q?=D0=9F=D0=B5=D1=80=D0=B2=D1=8B=D0=B9=20=D0=BA?= =?UTF-8?q?=D0=BE=D0=BC=D0=BC=D0=B8=D1=82.=20=D0=A1=D0=BE=D0=B7=D0=B4?= =?UTF-8?q?=D0=B0=D0=BD=D0=B8=D0=B5=20=D0=BF=D1=80=D0=BE=D0=B5=D0=BA=D1=82?= =?UTF-8?q?=D0=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ArmoredCar/ArmoredCar.sln | 25 +++++ ArmoredCar/ArmoredCar/ArmoredCar.csproj | 9 ++ ArmoredCar/ArmoredCar/Form1.Designer.cs | 41 ++++++++ ArmoredCar/ArmoredCar/Form1.cs | 21 +++++ ArmoredCar/ArmoredCar/Form1.resx | 120 ++++++++++++++++++++++++ ArmoredCar/ArmoredCar/Program.cs | 23 +++++ 6 files changed, 239 insertions(+) create mode 100644 ArmoredCar/ArmoredCar.sln create mode 100644 ArmoredCar/ArmoredCar/ArmoredCar.csproj create mode 100644 ArmoredCar/ArmoredCar/Form1.Designer.cs create mode 100644 ArmoredCar/ArmoredCar/Form1.cs create mode 100644 ArmoredCar/ArmoredCar/Form1.resx create mode 100644 ArmoredCar/ArmoredCar/Program.cs diff --git a/ArmoredCar/ArmoredCar.sln b/ArmoredCar/ArmoredCar.sln new file mode 100644 index 0000000..139871a --- /dev/null +++ b/ArmoredCar/ArmoredCar.sln @@ -0,0 +1,25 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 16 +VisualStudioVersion = 16.0.31624.102 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ArmoredCar", "ArmoredCar\ArmoredCar.csproj", "{DF305908-12EB-4E63-8D7C-4FB47C82B6A5}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {DF305908-12EB-4E63-8D7C-4FB47C82B6A5}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {DF305908-12EB-4E63-8D7C-4FB47C82B6A5}.Debug|Any CPU.Build.0 = Debug|Any CPU + {DF305908-12EB-4E63-8D7C-4FB47C82B6A5}.Release|Any CPU.ActiveCfg = Release|Any CPU + {DF305908-12EB-4E63-8D7C-4FB47C82B6A5}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {687CB037-A981-4536-BAA8-48DE5C0EBE2A} + EndGlobalSection +EndGlobal diff --git a/ArmoredCar/ArmoredCar/ArmoredCar.csproj b/ArmoredCar/ArmoredCar/ArmoredCar.csproj new file mode 100644 index 0000000..130a486 --- /dev/null +++ b/ArmoredCar/ArmoredCar/ArmoredCar.csproj @@ -0,0 +1,9 @@ + + + + WinExe + netcoreapp3.1 + true + + + \ No newline at end of file diff --git a/ArmoredCar/ArmoredCar/Form1.Designer.cs b/ArmoredCar/ArmoredCar/Form1.Designer.cs new file mode 100644 index 0000000..7124a9c --- /dev/null +++ b/ArmoredCar/ArmoredCar/Form1.Designer.cs @@ -0,0 +1,41 @@ + +namespace ArmoredCar +{ + 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/ArmoredCar/ArmoredCar/Form1.cs b/ArmoredCar/ArmoredCar/Form1.cs new file mode 100644 index 0000000..7dbac09 --- /dev/null +++ b/ArmoredCar/ArmoredCar/Form1.cs @@ -0,0 +1,21 @@ +using System; +using System.Collections.Generic; +using System.ComponentModel; +using System.Data; +using System.Drawing; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using System.Windows.Forms; + +namespace ArmoredCar +{ + public partial class Form1 : Form + { + public Form1() + { + InitializeComponent(); + } + + } +} diff --git a/ArmoredCar/ArmoredCar/Form1.resx b/ArmoredCar/ArmoredCar/Form1.resx new file mode 100644 index 0000000..1af7de1 --- /dev/null +++ b/ArmoredCar/ArmoredCar/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/ArmoredCar/ArmoredCar/Program.cs b/ArmoredCar/ArmoredCar/Program.cs new file mode 100644 index 0000000..830c888 --- /dev/null +++ b/ArmoredCar/ArmoredCar/Program.cs @@ -0,0 +1,23 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; +using System.Windows.Forms; + +namespace ArmoredCar +{ + static class Program + { + /// + /// The main entry point for the application. + /// + [STAThread] + static void Main() + { + Application.SetHighDpiMode(HighDpiMode.SystemAware); + Application.EnableVisualStyles(); + Application.SetCompatibleTextRenderingDefault(false); + Application.Run(new Form1()); + } + } +}