PIbd_23_Valova_A._D._SushiBar/SushiBar/SushiBarView/FormCreateOrder.Designer.cs

167 lines
5.8 KiB
C#

namespace SushiBarView
{
partial class FormCreateOrder
{
/// <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()
{
textBoxCount = new TextBox();
labelCost = new Label();
labelName = new Label();
textBoxSum = new TextBox();
label1 = new Label();
ButtonCancel = new Button();
ButtonSave = new Button();
comboBoxSushi = new ComboBox();
comboBoxUser = new ComboBox();
labelUser = new Label();
SuspendLayout();
//
// textBoxCount
//
textBoxCount.Location = new Point(83, 42);
textBoxCount.Name = "textBoxCount";
textBoxCount.Size = new Size(262, 23);
textBoxCount.TabIndex = 9;
textBoxCount.TextChanged += textBoxCost_TextChanged;
//
// labelCost
//
labelCost.AutoSize = true;
labelCost.Location = new Point(5, 45);
labelCost.Name = "labelCost";
labelCost.Size = new Size(72, 15);
labelCost.TabIndex = 7;
labelCost.Text = "Количество";
labelCost.Click += labelCost_Click;
//
// labelName
//
labelName.AutoSize = true;
labelName.Location = new Point(5, 12);
labelName.Name = "labelName";
labelName.Size = new Size(53, 15);
labelName.TabIndex = 6;
labelName.Text = "Изделие";
//
// textBoxSum
//
textBoxSum.Location = new Point(83, 75);
textBoxSum.Name = "textBoxSum";
textBoxSum.Size = new Size(262, 23);
textBoxSum.TabIndex = 11;
//
// label1
//
label1.AutoSize = true;
label1.Location = new Point(5, 83);
label1.Name = "label1";
label1.Size = new Size(45, 15);
label1.TabIndex = 10;
label1.Text = "Сумма";
//
// ButtonCancel
//
ButtonCancel.Location = new Point(258, 166);
ButtonCancel.Name = "ButtonCancel";
ButtonCancel.Size = new Size(87, 26);
ButtonCancel.TabIndex = 13;
ButtonCancel.Text = "Отмена";
ButtonCancel.UseVisualStyleBackColor = true;
ButtonCancel.Click += ButtonCancel_Click;
//
// ButtonSave
//
ButtonSave.Location = new Point(165, 166);
ButtonSave.Name = "ButtonSave";
ButtonSave.Size = new Size(87, 26);
ButtonSave.TabIndex = 12;
ButtonSave.Text = "Сохранить";
ButtonSave.UseVisualStyleBackColor = true;
ButtonSave.Click += ButtonSave_Click;
//
// comboBoxSushi
//
comboBoxSushi.FormattingEnabled = true;
comboBoxSushi.Location = new Point(83, 9);
comboBoxSushi.Name = "comboBoxSushi";
comboBoxSushi.Size = new Size(262, 23);
comboBoxSushi.TabIndex = 14;
comboBoxSushi.SelectedIndexChanged += comboBox1_SelectedIndexChanged;
//
// comboBoxUser
//
comboBoxUser.FormattingEnabled = true;
comboBoxUser.Location = new Point(95, 110);
comboBoxUser.Name = "comboBoxUser";
comboBoxUser.Size = new Size(250, 23);
comboBoxUser.TabIndex = 15;
//
// labelUser
//
labelUser.AutoSize = true;
labelUser.Location = new Point(5, 113);
labelUser.Name = "labelUser";
labelUser.Size = new Size(84, 15);
labelUser.TabIndex = 16;
labelUser.Text = "Пользователь";
//
// FormCreateOrder
//
AutoScaleDimensions = new SizeF(7F, 15F);
AutoScaleMode = AutoScaleMode.Font;
ClientSize = new Size(354, 204);
Controls.Add(labelUser);
Controls.Add(comboBoxUser);
Controls.Add(comboBoxSushi);
Controls.Add(ButtonCancel);
Controls.Add(ButtonSave);
Controls.Add(textBoxSum);
Controls.Add(label1);
Controls.Add(textBoxCount);
Controls.Add(labelCost);
Controls.Add(labelName);
Name = "FormCreateOrder";
Text = "FormCreateOrder";
Load += FormCreateOrder_Load;
ResumeLayout(false);
PerformLayout();
}
#endregion
private TextBox textBoxCount;
private Label labelCost;
private Label labelName;
private TextBox textBoxSum;
private Label label1;
private Button ButtonCancel;
private Button ButtonSave;
private ComboBox comboBoxSushi;
private ComboBox comboBoxUser;
private Label labelUser;
}
}