PIbd-21_Pyatakov_K.M._Secure/Secure/SecureShop/FormSecureFacilities.Designer.cs

125 lines
5.4 KiB
C#
Raw Normal View History

2023-03-09 08:39:13 +04:00
namespace SecureShopView
{
partial class FormSecureFacilities
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Clean up any resources being used.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
this.labelFacilities = new System.Windows.Forms.Label();
this.labelCount = new System.Windows.Forms.Label();
this.comboBoxFacilities = new System.Windows.Forms.ComboBox();
this.textBoxCount = new System.Windows.Forms.TextBox();
this.buttonSave = new System.Windows.Forms.Button();
this.buttonCancel = new System.Windows.Forms.Button();
this.SuspendLayout();
//
// labelFacilities
//
this.labelFacilities.AutoSize = true;
this.labelFacilities.Location = new System.Drawing.Point(22, 20);
this.labelFacilities.Name = "labelFacilities";
this.labelFacilities.Size = new System.Drawing.Size(92, 15);
this.labelFacilities.TabIndex = 0;
this.labelFacilities.Text = "Обородование:";
//
// labelCount
//
this.labelCount.AutoSize = true;
this.labelCount.Location = new System.Drawing.Point(22, 70);
this.labelCount.Name = "labelCount";
this.labelCount.Size = new System.Drawing.Size(75, 15);
this.labelCount.TabIndex = 1;
this.labelCount.Text = "Количество:";
//
// comboBoxFacilities
//
this.comboBoxFacilities.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.comboBoxFacilities.FormattingEnabled = true;
this.comboBoxFacilities.Location = new System.Drawing.Point(128, 20);
this.comboBoxFacilities.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
this.comboBoxFacilities.Name = "comboBoxFacilities";
this.comboBoxFacilities.Size = new System.Drawing.Size(282, 23);
this.comboBoxFacilities.TabIndex = 2;
//
// textBoxCount
//
this.textBoxCount.Location = new System.Drawing.Point(128, 68);
this.textBoxCount.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
this.textBoxCount.Name = "textBoxCount";
this.textBoxCount.Size = new System.Drawing.Size(282, 23);
this.textBoxCount.TabIndex = 3;
//
// buttonSave
//
this.buttonSave.Location = new System.Drawing.Point(128, 111);
this.buttonSave.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
this.buttonSave.Name = "buttonSave";
this.buttonSave.Size = new System.Drawing.Size(125, 22);
this.buttonSave.TabIndex = 4;
this.buttonSave.Text = "Сохранить";
this.buttonSave.UseVisualStyleBackColor = true;
this.buttonSave.Click += new System.EventHandler(this.ButtonSave_Click);
//
// buttonCancel
//
this.buttonCancel.Location = new System.Drawing.Point(284, 111);
this.buttonCancel.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
this.buttonCancel.Name = "buttonCancel";
this.buttonCancel.Size = new System.Drawing.Size(125, 22);
this.buttonCancel.TabIndex = 5;
this.buttonCancel.Text = "Отмена";
this.buttonCancel.UseVisualStyleBackColor = true;
this.buttonCancel.Click += new System.EventHandler(this.ButtonCancel_Click);
//
// FormSecureFacilities
//
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(447, 142);
this.Controls.Add(this.buttonCancel);
this.Controls.Add(this.buttonSave);
this.Controls.Add(this.textBoxCount);
this.Controls.Add(this.comboBoxFacilities);
this.Controls.Add(this.labelCount);
this.Controls.Add(this.labelFacilities);
this.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
this.Name = "FormSecureFacilities";
this.Text = "Оборудование Системы безопасности";
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private Label labelFacilities;
private Label labelCount;
private ComboBox comboBoxFacilities;
private TextBox textBoxCount;
private Button buttonSave;
private Button buttonCancel;
}
}