146 lines
5.9 KiB
C#
146 lines
5.9 KiB
C#
namespace Pizzeria
|
|
{
|
|
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()
|
|
{
|
|
this.comboBoxPizza = new System.Windows.Forms.ComboBox();
|
|
this.buttonCancel = new System.Windows.Forms.Button();
|
|
this.buttonSave = new System.Windows.Forms.Button();
|
|
this.textBoxCount = new System.Windows.Forms.TextBox();
|
|
this.label2 = new System.Windows.Forms.Label();
|
|
this.label1 = new System.Windows.Forms.Label();
|
|
this.textBoxSum = new System.Windows.Forms.TextBox();
|
|
this.label3 = new System.Windows.Forms.Label();
|
|
this.SuspendLayout();
|
|
//
|
|
// comboBoxPizza
|
|
//
|
|
this.comboBoxPizza.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
|
|
this.comboBoxPizza.FormattingEnabled = true;
|
|
this.comboBoxPizza.Location = new System.Drawing.Point(119, 34);
|
|
this.comboBoxPizza.Name = "comboBoxPizza";
|
|
this.comboBoxPizza.Size = new System.Drawing.Size(224, 28);
|
|
this.comboBoxPizza.TabIndex = 18;
|
|
this.comboBoxPizza.SelectedIndexChanged += new System.EventHandler(this.ComboBoxPizza_SelectedIndexChanged);
|
|
//
|
|
// buttonCancel
|
|
//
|
|
this.buttonCancel.Location = new System.Drawing.Point(249, 145);
|
|
this.buttonCancel.Name = "buttonCancel";
|
|
this.buttonCancel.Size = new System.Drawing.Size(94, 29);
|
|
this.buttonCancel.TabIndex = 17;
|
|
this.buttonCancel.Text = "Отмена";
|
|
this.buttonCancel.UseVisualStyleBackColor = true;
|
|
this.buttonCancel.Click += new System.EventHandler(this.ButtonCancel_Click);
|
|
//
|
|
// buttonSave
|
|
//
|
|
this.buttonSave.Location = new System.Drawing.Point(135, 145);
|
|
this.buttonSave.Name = "buttonSave";
|
|
this.buttonSave.Size = new System.Drawing.Size(94, 29);
|
|
this.buttonSave.TabIndex = 16;
|
|
this.buttonSave.Text = "Сохранить";
|
|
this.buttonSave.UseVisualStyleBackColor = true;
|
|
this.buttonSave.Click += new System.EventHandler(this.ButtonSave_Click);
|
|
//
|
|
// textBoxCount
|
|
//
|
|
this.textBoxCount.Location = new System.Drawing.Point(117, 68);
|
|
this.textBoxCount.Name = "textBoxCount";
|
|
this.textBoxCount.Size = new System.Drawing.Size(225, 27);
|
|
this.textBoxCount.TabIndex = 15;
|
|
this.textBoxCount.TextChanged += new System.EventHandler(this.TextBoxCount_TextChanged);
|
|
//
|
|
// label2
|
|
//
|
|
this.label2.AutoSize = true;
|
|
this.label2.Location = new System.Drawing.Point(22, 75);
|
|
this.label2.Name = "label2";
|
|
this.label2.Size = new System.Drawing.Size(93, 20);
|
|
this.label2.TabIndex = 14;
|
|
this.label2.Text = "Количество:";
|
|
//
|
|
// label1
|
|
//
|
|
this.label1.AutoSize = true;
|
|
this.label1.Location = new System.Drawing.Point(22, 42);
|
|
this.label1.Name = "label1";
|
|
this.label1.Size = new System.Drawing.Size(71, 20);
|
|
this.label1.TabIndex = 13;
|
|
this.label1.Text = "Изделие:";
|
|
//
|
|
// textBoxSum
|
|
//
|
|
this.textBoxSum.Location = new System.Drawing.Point(118, 101);
|
|
this.textBoxSum.Name = "textBoxSum";
|
|
this.textBoxSum.ReadOnly = true;
|
|
this.textBoxSum.Size = new System.Drawing.Size(225, 27);
|
|
this.textBoxSum.TabIndex = 20;
|
|
//
|
|
// label3
|
|
//
|
|
this.label3.AutoSize = true;
|
|
this.label3.Location = new System.Drawing.Point(23, 108);
|
|
this.label3.Name = "label3";
|
|
this.label3.Size = new System.Drawing.Size(58, 20);
|
|
this.label3.TabIndex = 19;
|
|
this.label3.Text = "Сумма:";
|
|
//
|
|
// FormCreateOrder
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 20F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(379, 195);
|
|
this.Controls.Add(this.textBoxSum);
|
|
this.Controls.Add(this.label3);
|
|
this.Controls.Add(this.comboBoxPizza);
|
|
this.Controls.Add(this.buttonCancel);
|
|
this.Controls.Add(this.buttonSave);
|
|
this.Controls.Add(this.textBoxCount);
|
|
this.Controls.Add(this.label2);
|
|
this.Controls.Add(this.label1);
|
|
this.Name = "FormCreateOrder";
|
|
this.Text = "Заказ";
|
|
this.Load += new System.EventHandler(this.FormCreateOrder_Load);
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private ComboBox comboBoxPizza;
|
|
private Button buttonCancel;
|
|
private Button buttonSave;
|
|
private TextBox textBoxCount;
|
|
private Label label2;
|
|
private Label label1;
|
|
private TextBox textBoxSum;
|
|
private Label label3;
|
|
}
|
|
} |