142 lines
4.9 KiB
C#

namespace SushiBarView
{
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();
labelSushi = new Label();
labelCount = new Label();
comboBoxShop = new ComboBox();
comboBoxSushi = new ComboBox();
textBoxCount = new TextBox();
buttonSave = new Button();
buttonCancel = new Button();
SuspendLayout();
//
// labelShop
//
labelShop.AutoSize = true;
labelShop.Location = new Point(12, 25);
labelShop.Name = "labelShop";
labelShop.Size = new Size(57, 15);
labelShop.TabIndex = 0;
labelShop.Text = "Магазин:";
//
// labelSushi
//
labelSushi.AutoSize = true;
labelSushi.Location = new Point(12, 62);
labelSushi.Name = "labelSushi";
labelSushi.Size = new Size(56, 15);
labelSushi.TabIndex = 1;
labelSushi.Text = "Изделие:";
//
// labelCount
//
labelCount.AutoSize = true;
labelCount.Location = new Point(12, 99);
labelCount.Name = "labelCount";
labelCount.Size = new Size(75, 15);
labelCount.TabIndex = 2;
labelCount.Text = "Количество:";
//
// comboBoxShop
//
comboBoxShop.FormattingEnabled = true;
comboBoxShop.Location = new Point(100, 22);
comboBoxShop.Name = "comboBoxShop";
comboBoxShop.Size = new Size(239, 23);
comboBoxShop.TabIndex = 3;
//
// comboBoxSushi
//
comboBoxSushi.FormattingEnabled = true;
comboBoxSushi.Location = new Point(100, 59);
comboBoxSushi.Name = "comboBoxSushi";
comboBoxSushi.Size = new Size(239, 23);
comboBoxSushi.TabIndex = 4;
//
// textBoxCount
//
textBoxCount.Location = new Point(100, 96);
textBoxCount.Name = "textBoxCount";
textBoxCount.Size = new Size(239, 23);
textBoxCount.TabIndex = 5;
//
// buttonSave
//
buttonSave.Location = new Point(39, 138);
buttonSave.Name = "buttonSave";
buttonSave.Size = new Size(118, 44);
buttonSave.TabIndex = 6;
buttonSave.Text = "Сохранить";
buttonSave.UseVisualStyleBackColor = true;
buttonSave.Click += ButtonSave_Click;
//
// buttonCancel
//
buttonCancel.Location = new Point(199, 138);
buttonCancel.Name = "buttonCancel";
buttonCancel.Size = new Size(118, 44);
buttonCancel.TabIndex = 7;
buttonCancel.Text = "Отмена";
buttonCancel.UseVisualStyleBackColor = true;
buttonCancel.Click += ButtonCancel_Click;
//
// FormCreateSupply
//
AutoScaleDimensions = new SizeF(7F, 15F);
AutoScaleMode = AutoScaleMode.Font;
ClientSize = new Size(351, 194);
Controls.Add(buttonCancel);
Controls.Add(buttonSave);
Controls.Add(textBoxCount);
Controls.Add(comboBoxSushi);
Controls.Add(comboBoxShop);
Controls.Add(labelCount);
Controls.Add(labelSushi);
Controls.Add(labelShop);
Name = "FormCreateSupply";
Text = "Создание поставки";
Load += FormCreateSupply_Load;
ResumeLayout(false);
PerformLayout();
}
#endregion
private Label labelShop;
private Label labelSushi;
private Label labelCount;
private ComboBox comboBoxShop;
private ComboBox comboBoxSushi;
private TextBox textBoxCount;
private Button buttonSave;
private Button buttonCancel;
}
}