From 76d527f8d11793ca8d23a09a4a93c0b92912ebc9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=9F=D0=BE=D0=BB=D0=B8=D0=BD=D0=B0=20=D0=A7=D1=83=D0=B1?= =?UTF-8?q?=D1=8B=D0=BA=D0=B8=D0=BD=D0=B0?= Date: Mon, 6 Nov 2023 18:59:42 +0400 Subject: [PATCH] =?UTF-8?q?=D0=BD=D0=B0=D1=87=D0=B0=D0=BB=D0=BE=20=D1=80?= =?UTF-8?q?=D0=B0=D0=B1=D0=BE=D1=82=D1=8B=20=D0=BD=D0=B0=D0=B4=20=D0=BB?= =?UTF-8?q?=D0=B0=D0=B1=D0=BE=D0=B9=205,=20=D0=B4=D0=BE=D0=B1=D0=B0=D0=B2?= =?UTF-8?q?=D0=BB=D0=B5=D0=BD=D0=B8=D0=B5=20=D1=84=D0=BE=D1=80=D0=BC=D1=8B?= =?UTF-8?q?=20=D0=B4=D0=BB=D1=8F=20=D1=81=D0=BE=D0=B7=D0=B4=D0=B0=D0=BD?= =?UTF-8?q?=D0=B8=D1=8F=20=D0=BE=D0=B1=D1=8A=D0=B5=D0=BA=D1=82=D0=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Sailboat/Sailboat/FormBoatConfig.Designer.cs | 46 +++++++++++++++ Sailboat/Sailboat/FormBoatConfig.cs | 20 +++++++ Sailboat/Sailboat/FormBoatConfig.resx | 60 ++++++++++++++++++++ 3 files changed, 126 insertions(+) create mode 100644 Sailboat/Sailboat/FormBoatConfig.Designer.cs create mode 100644 Sailboat/Sailboat/FormBoatConfig.cs create mode 100644 Sailboat/Sailboat/FormBoatConfig.resx diff --git a/Sailboat/Sailboat/FormBoatConfig.Designer.cs b/Sailboat/Sailboat/FormBoatConfig.Designer.cs new file mode 100644 index 0000000..895b8b5 --- /dev/null +++ b/Sailboat/Sailboat/FormBoatConfig.Designer.cs @@ -0,0 +1,46 @@ +namespace Sailboat +{ + partial class FormBoatConfig + { + /// + /// 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.SuspendLayout(); + // + // FormBoatConfig + // + this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 20F); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.ClientSize = new System.Drawing.Size(800, 450); + this.Name = "FormBoatConfig"; + this.Text = "Создание объекта"; + this.ResumeLayout(false); + + } + + #endregion + } +} \ No newline at end of file diff --git a/Sailboat/Sailboat/FormBoatConfig.cs b/Sailboat/Sailboat/FormBoatConfig.cs new file mode 100644 index 0000000..99708c6 --- /dev/null +++ b/Sailboat/Sailboat/FormBoatConfig.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 Sailboat +{ + public partial class FormBoatConfig : Form + { + public FormBoatConfig() + { + InitializeComponent(); + } + } +} diff --git a/Sailboat/Sailboat/FormBoatConfig.resx b/Sailboat/Sailboat/FormBoatConfig.resx new file mode 100644 index 0000000..f298a7b --- /dev/null +++ b/Sailboat/Sailboat/FormBoatConfig.resx @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 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