ISEbd-22_Baygulov_A.A._Sush.../SushiBar/SushiBarView/FormCreateOrder.Designer.cs

167 lines
4.7 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()
{
labelSushi = new Label();
labelCount = new Label();
labelSum = new Label();
textBoxCount = new TextBox();
comboBoxSushi = new ComboBox();
textBoxSum = new TextBox();
ButtonSave = new Button();
ButtonCancel = new Button();
comboBoxUser = new ComboBox();
labelUser = new Label();
SuspendLayout();
//
// labelSushi
//
labelSushi.AutoSize = true;
labelSushi.Location = new Point(33, 66);
labelSushi.Name = "labelSushi";
labelSushi.Size = new Size(42, 15);
labelSushi.TabIndex = 0;
labelSushi.Text = "Суши:";
//
// labelCount
//
labelCount.AutoSize = true;
labelCount.Location = new Point(33, 95);
labelCount.Name = "labelCount";
labelCount.Size = new Size(75, 15);
labelCount.TabIndex = 1;
labelCount.Text = "Количество:";
//
// labelSum
//
labelSum.AutoSize = true;
labelSum.Location = new Point(33, 124);
labelSum.Name = "labelSum";
labelSum.Size = new Size(48, 15);
labelSum.TabIndex = 2;
labelSum.Text = "Сумма:";
//
// textBoxCount
//
textBoxCount.Location = new Point(123, 95);
textBoxCount.Name = "textBoxCount";
textBoxCount.Size = new Size(276, 23);
textBoxCount.TabIndex = 3;
textBoxCount.TextChanged += textBoxCost_TextChanged;
//
// comboBoxSushi
//
comboBoxSushi.FormattingEnabled = true;
comboBoxSushi.Location = new Point(123, 66);
comboBoxSushi.Name = "comboBoxSushi";
comboBoxSushi.Size = new Size(276, 23);
comboBoxSushi.TabIndex = 4;
comboBoxSushi.SelectedIndexChanged += comboBoxSushi_SelectedIndexChanged;
//
// textBoxSum
//
textBoxSum.Location = new Point(123, 124);
textBoxSum.Name = "textBoxSum";
textBoxSum.ReadOnly = true;
textBoxSum.Size = new Size(276, 23);
textBoxSum.TabIndex = 5;
//
// ButtonSave
//
ButtonSave.Location = new Point(197, 168);
ButtonSave.Name = "ButtonSave";
ButtonSave.Size = new Size(98, 41);
ButtonSave.TabIndex = 6;
ButtonSave.Text = "Сохранить";
ButtonSave.UseVisualStyleBackColor = true;
ButtonSave.Click += ButtonSave_Click;
//
// ButtonCancel
//
ButtonCancel.Location = new Point(301, 168);
ButtonCancel.Name = "ButtonCancel";
ButtonCancel.Size = new Size(98, 41);
ButtonCancel.TabIndex = 7;
ButtonCancel.Text = "Отмена";
ButtonCancel.UseVisualStyleBackColor = true;
ButtonCancel.Click += ButtonCancel_Click;
//
// comboBoxUser
//
comboBoxUser.FormattingEnabled = true;
comboBoxUser.Location = new Point(123, 37);
comboBoxUser.Name = "comboBoxUser";
comboBoxUser.Size = new Size(276, 23);
comboBoxUser.TabIndex = 8;
//
// labelUser
//
labelUser.AutoSize = true;
labelUser.Location = new Point(33, 40);
labelUser.Name = "labelUser";
labelUser.Size = new Size(87, 15);
labelUser.TabIndex = 9;
labelUser.Text = "Пользователь:";
//
// FormCreateOrder
//
AutoScaleDimensions = new SizeF(7F, 15F);
AutoScaleMode = AutoScaleMode.Font;
ClientSize = new Size(411, 217);
Controls.Add(labelUser);
Controls.Add(comboBoxUser);
Controls.Add(ButtonCancel);
Controls.Add(ButtonSave);
Controls.Add(textBoxSum);
Controls.Add(comboBoxSushi);
Controls.Add(textBoxCount);
Controls.Add(labelSum);
Controls.Add(labelCount);
Controls.Add(labelSushi);
Name = "FormCreateOrder";
Text = "Заказ";
Load += FormCreateOrder_Load;
ResumeLayout(false);
PerformLayout();
}
#endregion
private Label labelSushi;
private Label labelCount;
private Label labelSum;
private TextBox textBoxCount;
private ComboBox comboBoxSushi;
private TextBox textBoxSum;
private Button ButtonSave;
private Button ButtonCancel;
private ComboBox comboBoxUser;
private Label labelUser;
}
}