Pibd-21_Ievlewa_MD._Precast.../PrecastConcretePlant/PrecastConcretePlantView/FormShopRefill.Designer.cs
2024-04-18 22:41:30 +03:00

145 lines
5.2 KiB
C#

namespace PrecastConcretePlantView
{
partial class FormShopRefill
{
/// <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()
{
labelShop = new Label();
labelReinforced = new Label();
labelCount = new Label();
comboBoxShop = new ComboBox();
comboBoxReinforced = new ComboBox();
textBoxCount = new TextBox();
buttonCancel = new Button();
buttonSave = new Button();
SuspendLayout();
//
// labelShop
//
labelShop.AutoSize = true;
labelShop.Location = new Point(27, 29);
labelShop.Name = "labelShop";
labelShop.Size = new Size(72, 20);
labelShop.TabIndex = 0;
labelShop.Text = "Магазин:";
//
// labelReinforced
//
labelReinforced.AutoSize = true;
labelReinforced.Location = new Point(27, 73);
labelReinforced.Name = "labelReinforced";
labelReinforced.Size = new Size(71, 20);
labelReinforced.TabIndex = 1;
labelReinforced.Text = "Изделие:";
//
// labelCount
//
labelCount.AutoSize = true;
labelCount.Location = new Point(27, 118);
labelCount.Name = "labelCount";
labelCount.Size = new Size(93, 20);
labelCount.TabIndex = 2;
labelCount.Text = "Количество:";
//
// comboBoxShop
//
comboBoxShop.DropDownStyle = ComboBoxStyle.DropDownList;
comboBoxShop.FormattingEnabled = true;
comboBoxShop.Location = new Point(136, 29);
comboBoxShop.Name = "comboBoxShop";
comboBoxShop.Size = new Size(239, 28);
comboBoxShop.TabIndex = 3;
//
// comboBoxReinforced
//
comboBoxReinforced.DropDownStyle = ComboBoxStyle.DropDownList;
comboBoxReinforced.FormattingEnabled = true;
comboBoxReinforced.Location = new Point(136, 73);
comboBoxReinforced.Name = "comboBoxReinforced";
comboBoxReinforced.Size = new Size(239, 28);
comboBoxReinforced.TabIndex = 4;
//
// textBoxCount
//
textBoxCount.Location = new Point(136, 118);
textBoxCount.Name = "textBoxCount";
textBoxCount.Size = new Size(239, 27);
textBoxCount.TabIndex = 5;
//
// buttonCancel
//
buttonCancel.Location = new Point(282, 162);
buttonCancel.Name = "buttonCancel";
buttonCancel.Size = new Size(93, 29);
buttonCancel.TabIndex = 6;
buttonCancel.Text = "Отмена";
buttonCancel.UseVisualStyleBackColor = true;
buttonCancel.Click += ButtonCancel_Click;
//
// buttonSave
//
buttonSave.Location = new Point(182, 162);
buttonSave.Name = "buttonSave";
buttonSave.Size = new Size(94, 29);
buttonSave.TabIndex = 7;
buttonSave.Text = "Сохранить";
buttonSave.UseVisualStyleBackColor = true;
buttonSave.Click += ButtonSave_Click;
//
// FormShopRefill
//
AutoScaleDimensions = new SizeF(8F, 20F);
AutoScaleMode = AutoScaleMode.Font;
ClientSize = new Size(422, 203);
Controls.Add(buttonSave);
Controls.Add(buttonCancel);
Controls.Add(textBoxCount);
Controls.Add(comboBoxReinforced);
Controls.Add(comboBoxShop);
Controls.Add(labelCount);
Controls.Add(labelReinforced);
Controls.Add(labelShop);
Name = "FormShopRefill";
StartPosition = FormStartPosition.CenterScreen;
Text = "Пополнение магазина";
Load += FormShopRefill_Load;
ResumeLayout(false);
PerformLayout();
}
#endregion
private Label labelShop;
private Label labelReinforced;
private Label labelCount;
private ComboBox comboBoxShop;
private ComboBox comboBoxReinforced;
private TextBox textBoxCount;
private Button buttonCancel;
private Button buttonSave;
}
}