147 lines
4.2 KiB
C#
Raw Permalink Normal View History

2024-05-12 13:03:07 +04:00
namespace PrecastConcretePlantView
{
partial class FormCreateSupply
{
/// <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()
{
buttonSave = new Button();
buttonCancel = new Button();
textBoxCount = new TextBox();
labelCount = new Label();
comboBoxReinforced = new ComboBox();
labelReinforced = new Label();
labelShop = new Label();
comboBoxShop = new ComboBox();
SuspendLayout();
//
// buttonSave
//
buttonSave.Location = new Point(147, 85);
buttonSave.Margin = new Padding(3, 2, 3, 2);
buttonSave.Name = "buttonSave";
buttonSave.Size = new Size(102, 29);
buttonSave.TabIndex = 15;
buttonSave.Text = "Сохранить";
buttonSave.UseVisualStyleBackColor = true;
buttonSave.Click += ButtonSave_Click;
//
// buttonCancel
//
buttonCancel.Location = new Point(262, 85);
buttonCancel.Margin = new Padding(3, 2, 3, 2);
buttonCancel.Name = "buttonCancel";
buttonCancel.Size = new Size(102, 29);
buttonCancel.TabIndex = 14;
buttonCancel.Text = "Отмена";
buttonCancel.UseVisualStyleBackColor = true;
buttonCancel.Click += ButtonCancel_Click;
//
// textBoxCount
//
textBoxCount.Location = new Point(101, 60);
textBoxCount.Margin = new Padding(3, 2, 3, 2);
textBoxCount.Name = "textBoxCount";
textBoxCount.Size = new Size(302, 23);
textBoxCount.TabIndex = 13;
//
// labelCount
//
labelCount.AutoSize = true;
labelCount.Location = new Point(10, 62);
labelCount.Name = "labelCount";
labelCount.Size = new Size(78, 15);
labelCount.TabIndex = 12;
labelCount.Text = "Количество: ";
//
// comboBoxReinforced
//
comboBoxReinforced.FormattingEnabled = true;
comboBoxReinforced.Location = new Point(101, 34);
comboBoxReinforced.Margin = new Padding(3, 2, 3, 2);
comboBoxReinforced.Name = "comboBoxReinforced";
comboBoxReinforced.Size = new Size(302, 23);
comboBoxReinforced.TabIndex = 11;
//
// labelReinforced
//
labelReinforced.AutoSize = true;
labelReinforced.Location = new Point(10, 37);
labelReinforced.Name = "labelReinforced";
labelReinforced.Size = new Size(59, 15);
labelReinforced.TabIndex = 10;
labelReinforced.Text = "Изделие: ";
//
// labelShop
//
labelShop.AutoSize = true;
labelShop.Location = new Point(10, 11);
labelShop.Name = "labelShop";
labelShop.Size = new Size(60, 15);
labelShop.TabIndex = 9;
labelShop.Text = "Магазин: ";
//
// comboBoxShop
//
comboBoxShop.FormattingEnabled = true;
comboBoxShop.Location = new Point(101, 9);
comboBoxShop.Margin = new Padding(3, 2, 3, 2);
comboBoxShop.Name = "comboBoxShop";
comboBoxShop.Size = new Size(302, 23);
comboBoxShop.TabIndex = 8;
//
// FormCreateSupply
//
AutoScaleDimensions = new SizeF(7F, 15F);
AutoScaleMode = AutoScaleMode.Font;
ClientSize = new Size(412, 123);
Controls.Add(buttonSave);
Controls.Add(buttonCancel);
Controls.Add(textBoxCount);
Controls.Add(labelCount);
Controls.Add(comboBoxReinforced);
Controls.Add(labelReinforced);
Controls.Add(labelShop);
Controls.Add(comboBoxShop);
Name = "FormCreateSupply";
Text = "Создане поставки";
Load += FormCreateSupply_Load;
ResumeLayout(false);
PerformLayout();
}
#endregion
private Button buttonSave;
private Button buttonCancel;
private TextBox textBoxCount;
private Label labelCount;
private ComboBox comboBoxReinforced;
private Label labelReinforced;
private Label labelShop;
private ComboBox comboBoxShop;
}
}