128 lines
4.5 KiB
C#
Raw Permalink Normal View History

namespace FoodOrdersView
{
partial class FormDishSale
{
/// <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()
{
buttonCancel = new Button();
buttonSale = new Button();
textBoxCount = new TextBox();
labelCount = new Label();
comboBoxDish = new ComboBox();
labelDish = new Label();
SuspendLayout();
//
// buttonCancel
//
buttonCancel.Location = new Point(289, 111);
buttonCancel.Margin = new Padding(5, 4, 5, 4);
buttonCancel.Name = "buttonCancel";
buttonCancel.Size = new Size(101, 36);
buttonCancel.TabIndex = 17;
buttonCancel.Text = "Отмена";
buttonCancel.UseVisualStyleBackColor = true;
buttonCancel.Click += ButtonCancel_Click;
//
// buttonSale
//
buttonSale.Location = new Point(182, 111);
buttonSale.Margin = new Padding(5, 4, 5, 4);
buttonSale.Name = "buttonSale";
buttonSale.Size = new Size(101, 36);
buttonSale.TabIndex = 16;
buttonSale.Text = "Продать";
buttonSale.UseVisualStyleBackColor = true;
buttonSale.Click += ButtonSale_Click;
//
// textBoxCount
//
textBoxCount.Location = new Point(115, 68);
textBoxCount.Margin = new Padding(5, 4, 5, 4);
textBoxCount.Name = "textBoxCount";
textBoxCount.Size = new Size(287, 27);
textBoxCount.TabIndex = 15;
//
// labelCount
//
labelCount.AutoSize = true;
labelCount.Location = new Point(15, 72);
labelCount.Margin = new Padding(5, 0, 5, 0);
labelCount.Name = "labelCount";
labelCount.Size = new Size(97, 20);
labelCount.TabIndex = 14;
labelCount.Text = "Количество :";
//
// comboBoxDish
//
comboBoxDish.DropDownStyle = ComboBoxStyle.DropDownList;
comboBoxDish.FormattingEnabled = true;
comboBoxDish.Location = new Point(115, 20);
comboBoxDish.Margin = new Padding(5, 4, 5, 4);
comboBoxDish.Name = "comboBoxDish";
comboBoxDish.Size = new Size(287, 28);
comboBoxDish.TabIndex = 13;
//
// labelDish
//
labelDish.AutoSize = true;
labelDish.Location = new Point(15, 23);
labelDish.Margin = new Padding(5, 0, 5, 0);
labelDish.Name = "labelDish";
labelDish.Size = new Size(62, 20);
labelDish.TabIndex = 12;
labelDish.Text = "Блюдо :";
//
// FormDishSale
//
AutoScaleDimensions = new SizeF(8F, 20F);
AutoScaleMode = AutoScaleMode.Font;
ClientSize = new Size(426, 164);
Controls.Add(buttonCancel);
Controls.Add(buttonSale);
Controls.Add(textBoxCount);
Controls.Add(labelCount);
Controls.Add(comboBoxDish);
Controls.Add(labelDish);
Margin = new Padding(3, 4, 3, 4);
Name = "FormDishSale";
StartPosition = FormStartPosition.CenterScreen;
Text = "Продажа блюд";
Load += FormDishSale_Load;
ResumeLayout(false);
PerformLayout();
}
#endregion
private Button buttonCancel;
private Button buttonSale;
private TextBox textBoxCount;
private Label labelCount;
private ComboBox comboBoxDish;
private Label labelDish;
}
}