From 5e49f9700c752bdbcf326c221dd8929c1d2276e6 Mon Sep 17 00:00:00 2001 From: "ns.potapov" Date: Mon, 11 Mar 2024 10:17:49 +0400 Subject: [PATCH] =?UTF-8?q?=D0=A1=D0=BE=D0=B7=D0=B4=D0=B0=D0=BD=D1=8B=20?= =?UTF-8?q?=D1=88=D0=B0=D0=B1=D0=BB=D0=BE=D0=BD=D1=8B=20=D1=84=D0=BE=D1=80?= =?UTF-8?q?=D0=BC=20=D0=B4=D0=BB=D1=8F=20=D0=BC=D0=B3=D0=B0=D0=B7=D0=B8?= =?UTF-8?q?=D0=BD=D0=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../SecuritySystemView/FormShop.Designer.cs | 39 ++++++ SecuritySystem/SecuritySystemView/FormShop.cs | 20 +++ .../SecuritySystemView/FormShop.resx | 120 ++++++++++++++++++ .../FormShopSupply.Designer.cs | 39 ++++++ .../SecuritySystemView/FormShopSupply.cs | 20 +++ .../SecuritySystemView/FormShopSupply.resx | 120 ++++++++++++++++++ .../SecuritySystemView/FormShops.Designer.cs | 39 ++++++ .../SecuritySystemView/FormShops.cs | 20 +++ .../SecuritySystemView/FormShops.resx | 120 ++++++++++++++++++ 9 files changed, 537 insertions(+) create mode 100644 SecuritySystem/SecuritySystemView/FormShop.Designer.cs create mode 100644 SecuritySystem/SecuritySystemView/FormShop.cs create mode 100644 SecuritySystem/SecuritySystemView/FormShop.resx create mode 100644 SecuritySystem/SecuritySystemView/FormShopSupply.Designer.cs create mode 100644 SecuritySystem/SecuritySystemView/FormShopSupply.cs create mode 100644 SecuritySystem/SecuritySystemView/FormShopSupply.resx create mode 100644 SecuritySystem/SecuritySystemView/FormShops.Designer.cs create mode 100644 SecuritySystem/SecuritySystemView/FormShops.cs create mode 100644 SecuritySystem/SecuritySystemView/FormShops.resx diff --git a/SecuritySystem/SecuritySystemView/FormShop.Designer.cs b/SecuritySystem/SecuritySystemView/FormShop.Designer.cs new file mode 100644 index 0000000..01ef94b --- /dev/null +++ b/SecuritySystem/SecuritySystemView/FormShop.Designer.cs @@ -0,0 +1,39 @@ +namespace SecuritySystemView +{ + partial class FormShop + { + /// + /// 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 = "FormShop"; + } + + #endregion + } +} \ No newline at end of file diff --git a/SecuritySystem/SecuritySystemView/FormShop.cs b/SecuritySystem/SecuritySystemView/FormShop.cs new file mode 100644 index 0000000..4d19325 --- /dev/null +++ b/SecuritySystem/SecuritySystemView/FormShop.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 SecuritySystemView +{ + public partial class FormShop : Form + { + public FormShop() + { + InitializeComponent(); + } + } +} diff --git a/SecuritySystem/SecuritySystemView/FormShop.resx b/SecuritySystem/SecuritySystemView/FormShop.resx new file mode 100644 index 0000000..1af7de1 --- /dev/null +++ b/SecuritySystem/SecuritySystemView/FormShop.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/SecuritySystem/SecuritySystemView/FormShopSupply.Designer.cs b/SecuritySystem/SecuritySystemView/FormShopSupply.Designer.cs new file mode 100644 index 0000000..9a26ee8 --- /dev/null +++ b/SecuritySystem/SecuritySystemView/FormShopSupply.Designer.cs @@ -0,0 +1,39 @@ +namespace SecuritySystemView +{ + partial class FormShopSupply + { + /// + /// 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 = "FormShopSupply"; + } + + #endregion + } +} \ No newline at end of file diff --git a/SecuritySystem/SecuritySystemView/FormShopSupply.cs b/SecuritySystem/SecuritySystemView/FormShopSupply.cs new file mode 100644 index 0000000..463d314 --- /dev/null +++ b/SecuritySystem/SecuritySystemView/FormShopSupply.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 SecuritySystemView +{ + public partial class FormShopSupply : Form + { + public FormShopSupply() + { + InitializeComponent(); + } + } +} diff --git a/SecuritySystem/SecuritySystemView/FormShopSupply.resx b/SecuritySystem/SecuritySystemView/FormShopSupply.resx new file mode 100644 index 0000000..1af7de1 --- /dev/null +++ b/SecuritySystem/SecuritySystemView/FormShopSupply.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/SecuritySystem/SecuritySystemView/FormShops.Designer.cs b/SecuritySystem/SecuritySystemView/FormShops.Designer.cs new file mode 100644 index 0000000..2f9db2d --- /dev/null +++ b/SecuritySystem/SecuritySystemView/FormShops.Designer.cs @@ -0,0 +1,39 @@ +namespace SecuritySystemView +{ + partial class FormShops + { + /// + /// 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 = "FormShops"; + } + + #endregion + } +} \ No newline at end of file diff --git a/SecuritySystem/SecuritySystemView/FormShops.cs b/SecuritySystem/SecuritySystemView/FormShops.cs new file mode 100644 index 0000000..903b4f9 --- /dev/null +++ b/SecuritySystem/SecuritySystemView/FormShops.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 SecuritySystemView +{ + public partial class FormShops : Form + { + public FormShops() + { + InitializeComponent(); + } + } +} diff --git a/SecuritySystem/SecuritySystemView/FormShops.resx b/SecuritySystem/SecuritySystemView/FormShops.resx new file mode 100644 index 0000000..1af7de1 --- /dev/null +++ b/SecuritySystem/SecuritySystemView/FormShops.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