From c3947c5007b5dd1fdbbcbe663cf3b5b6d9775323 Mon Sep 17 00:00:00 2001 From: Danila_Mochalov Date: Sun, 25 Sep 2022 20:28:57 +0400 Subject: [PATCH] =?UTF-8?q?=D0=94=D0=BE=D0=B1=D0=B0=D0=B2=D0=BB=D0=B5?= =?UTF-8?q?=D0=BD=D0=B0=D1=8F=20=D0=BF=D1=83=D1=81=D1=82=D0=B0=D1=8F=20?= =?UTF-8?q?=D1=84=D0=BE=D1=80=D0=BC=D0=B0=20=D0=BA=D0=B0=D1=80=D1=82=D1=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Locomotive/Locomotive/FormMap.Designer.cs | 39 +++++++ Locomotive/Locomotive/FormMap.cs | 20 ++++ Locomotive/Locomotive/FormMap.resx | 120 ++++++++++++++++++++++ 3 files changed, 179 insertions(+) create mode 100644 Locomotive/Locomotive/FormMap.Designer.cs create mode 100644 Locomotive/Locomotive/FormMap.cs create mode 100644 Locomotive/Locomotive/FormMap.resx diff --git a/Locomotive/Locomotive/FormMap.Designer.cs b/Locomotive/Locomotive/FormMap.Designer.cs new file mode 100644 index 0000000..bcff4fa --- /dev/null +++ b/Locomotive/Locomotive/FormMap.Designer.cs @@ -0,0 +1,39 @@ +namespace Locomotive +{ + partial class FormMap + { + /// + /// 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 = "FormMap"; + } + + #endregion + } +} \ No newline at end of file diff --git a/Locomotive/Locomotive/FormMap.cs b/Locomotive/Locomotive/FormMap.cs new file mode 100644 index 0000000..2808099 --- /dev/null +++ b/Locomotive/Locomotive/FormMap.cs @@ -0,0 +1,20 @@ +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 Locomotive +{ + public partial class FormMap : Form + { + public FormMap() + { + InitializeComponent(); + } + } +} diff --git a/Locomotive/Locomotive/FormMap.resx b/Locomotive/Locomotive/FormMap.resx new file mode 100644 index 0000000..1af7de1 --- /dev/null +++ b/Locomotive/Locomotive/FormMap.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