PIbd-22_Shabunov_O.A._SushiBar/SushiBarView/Forms/FormCreateChequeItem.Designer.cs
2024-05-24 01:56:34 +04:00

143 lines
4.8 KiB
C#

namespace SushiBarView.Forms
{
partial class FormCreateChequeItem
{
/// <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()
{
label1 = new Label();
DishComboBox = new ComboBox();
label2 = new Label();
CookComboBox = new ComboBox();
label3 = new Label();
CountTextBox = new TextBox();
CancelButton = new Button();
SaveButton = new Button();
SuspendLayout();
//
// label1
//
label1.AutoSize = true;
label1.Location = new Point(12, 15);
label1.Name = "label1";
label1.Size = new Size(47, 15);
label1.TabIndex = 0;
label1.Text = "Блюдо:";
//
// DishComboBox
//
DishComboBox.DropDownStyle = ComboBoxStyle.DropDownList;
DishComboBox.FormattingEnabled = true;
DishComboBox.Location = new Point(93, 12);
DishComboBox.Name = "DishComboBox";
DishComboBox.Size = new Size(232, 23);
DishComboBox.TabIndex = 1;
//
// label2
//
label2.AutoSize = true;
label2.Location = new Point(12, 44);
label2.Name = "label2";
label2.Size = new Size(45, 15);
label2.TabIndex = 2;
label2.Text = "Повар:";
//
// CookComboBox
//
CookComboBox.DropDownStyle = ComboBoxStyle.DropDownList;
CookComboBox.FormattingEnabled = true;
CookComboBox.Location = new Point(93, 41);
CookComboBox.Name = "CookComboBox";
CookComboBox.Size = new Size(232, 23);
CookComboBox.TabIndex = 3;
//
// label3
//
label3.AutoSize = true;
label3.Location = new Point(12, 73);
label3.Name = "label3";
label3.Size = new Size(75, 15);
label3.TabIndex = 4;
label3.Text = "Количество:";
//
// CountTextBox
//
CountTextBox.Location = new Point(93, 70);
CountTextBox.Name = "CountTextBox";
CountTextBox.Size = new Size(232, 23);
CountTextBox.TabIndex = 5;
//
// CancelButton
//
CancelButton.Location = new Point(250, 109);
CancelButton.Name = "CancelButton";
CancelButton.Size = new Size(75, 23);
CancelButton.TabIndex = 8;
CancelButton.Text = "Отмена";
CancelButton.UseVisualStyleBackColor = true;
CancelButton.Click += CancelButton_Click;
//
// SaveButton
//
SaveButton.Location = new Point(163, 109);
SaveButton.Name = "SaveButton";
SaveButton.Size = new Size(81, 23);
SaveButton.TabIndex = 9;
SaveButton.Text = "Сохранить";
SaveButton.UseVisualStyleBackColor = true;
SaveButton.Click += SaveButton_Click;
//
// FormCreateChequeItem
//
AutoScaleDimensions = new SizeF(7F, 15F);
AutoScaleMode = AutoScaleMode.Font;
ClientSize = new Size(347, 146);
Controls.Add(SaveButton);
Controls.Add(CancelButton);
Controls.Add(CountTextBox);
Controls.Add(label3);
Controls.Add(CookComboBox);
Controls.Add(label2);
Controls.Add(DishComboBox);
Controls.Add(label1);
Name = "FormCreateChequeItem";
Text = "Элемент чека";
ResumeLayout(false);
PerformLayout();
}
#endregion
private Label label1;
private ComboBox DishComboBox;
private Label label2;
private ComboBox CookComboBox;
private Label label3;
private TextBox CountTextBox;
private Button CancelButton;
private Button SaveButton;
}
}