ISEbd-22_Alimova_M.S._Confe.../Confectionery/ConfectioneryView/FormCreateSupply.Designer.cs
2024-02-29 23:33:00 +04:00

142 lines
4.9 KiB
C#

namespace ConfectioneryView
{
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()
{
labelShop = new Label();
labelPastry = new Label();
labelCount = new Label();
comboBoxShop = new ComboBox();
comboBoxPastry = new ComboBox();
textBoxCount = new TextBox();
buttonSave = new Button();
buttonCancel = new Button();
SuspendLayout();
//
// labelShop
//
labelShop.AutoSize = true;
labelShop.Location = new Point(42, 42);
labelShop.Name = "labelShop";
labelShop.Size = new Size(85, 25);
labelShop.TabIndex = 0;
labelShop.Text = "Магазин:";
//
// labelPastry
//
labelPastry.AutoSize = true;
labelPastry.Location = new Point(42, 101);
labelPastry.Name = "labelPastry";
labelPastry.Size = new Size(84, 25);
labelPastry.TabIndex = 1;
labelPastry.Text = "Изделие:";
//
// labelCount
//
labelCount.AutoSize = true;
labelCount.Location = new Point(42, 161);
labelCount.Name = "labelCount";
labelCount.Size = new Size(111, 25);
labelCount.TabIndex = 2;
labelCount.Text = "Количество:";
//
// comboBoxShop
//
comboBoxShop.FormattingEnabled = true;
comboBoxShop.Location = new Point(162, 39);
comboBoxShop.Name = "comboBoxShop";
comboBoxShop.Size = new Size(383, 33);
comboBoxShop.TabIndex = 3;
//
// comboBoxPastry
//
comboBoxPastry.FormattingEnabled = true;
comboBoxPastry.Location = new Point(162, 98);
comboBoxPastry.Name = "comboBoxPastry";
comboBoxPastry.Size = new Size(383, 33);
comboBoxPastry.TabIndex = 4;
//
// textBoxCount
//
textBoxCount.Location = new Point(162, 158);
textBoxCount.Name = "textBoxCount";
textBoxCount.Size = new Size(383, 31);
textBoxCount.TabIndex = 5;
//
// buttonSave
//
buttonSave.Location = new Point(318, 214);
buttonSave.Name = "buttonSave";
buttonSave.Size = new Size(127, 49);
buttonSave.TabIndex = 6;
buttonSave.Text = "Сохранить";
buttonSave.UseVisualStyleBackColor = true;
buttonSave.Click += buttonSave_Click;
//
// buttonCancel
//
buttonCancel.Location = new Point(471, 214);
buttonCancel.Name = "buttonCancel";
buttonCancel.Size = new Size(127, 49);
buttonCancel.TabIndex = 7;
buttonCancel.Text = "Отмена";
buttonCancel.UseVisualStyleBackColor = true;
buttonCancel.Click += buttonCancel_Click;
//
// FormCreateSupply
//
AutoScaleDimensions = new SizeF(10F, 25F);
AutoScaleMode = AutoScaleMode.Font;
ClientSize = new Size(647, 288);
Controls.Add(buttonCancel);
Controls.Add(buttonSave);
Controls.Add(textBoxCount);
Controls.Add(comboBoxPastry);
Controls.Add(comboBoxShop);
Controls.Add(labelCount);
Controls.Add(labelPastry);
Controls.Add(labelShop);
Name = "FormCreateSupply";
Text = "Поставка";
Load += FormCreateSupply_Load;
ResumeLayout(false);
PerformLayout();
}
#endregion
private Label labelShop;
private Label labelPastry;
private Label labelCount;
private ComboBox comboBoxShop;
private ComboBox comboBoxPastry;
private TextBox textBoxCount;
private Button buttonSave;
private Button buttonCancel;
}
}