175 lines
7.6 KiB
C#
Raw Normal View History

2023-02-19 23:38:16 +04:00
namespace PizzeriaView
{
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.labelPizza = new System.Windows.Forms.Label();
this.comboBoxPizza = new System.Windows.Forms.ComboBox();
this.labelCount = new System.Windows.Forms.Label();
this.textBoxCount = new System.Windows.Forms.TextBox();
this.labelSum = new System.Windows.Forms.Label();
this.textBoxSum = new System.Windows.Forms.TextBox();
this.buttonCancel = new System.Windows.Forms.Button();
this.buttonSave = new System.Windows.Forms.Button();
2023-05-14 22:04:12 +04:00
this.comboBoxClient = new System.Windows.Forms.ComboBox();
this.labelClient = new System.Windows.Forms.Label();
2023-02-19 23:38:16 +04:00
this.SuspendLayout();
//
// labelPizza
//
this.labelPizza.AutoSize = true;
2023-05-14 22:04:12 +04:00
this.labelPizza.Location = new System.Drawing.Point(7, 68);
2023-02-19 23:38:16 +04:00
this.labelPizza.Name = "labelPizza";
this.labelPizza.Size = new System.Drawing.Size(43, 15);
this.labelPizza.TabIndex = 0;
this.labelPizza.Text = "Пицца";
//
// comboBoxPizza
//
this.comboBoxPizza.FormattingEnabled = true;
2023-05-14 22:04:12 +04:00
this.comboBoxPizza.Location = new System.Drawing.Point(98, 66);
2023-02-19 23:38:16 +04:00
this.comboBoxPizza.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
this.comboBoxPizza.Name = "comboBoxPizza";
this.comboBoxPizza.Size = new System.Drawing.Size(314, 23);
this.comboBoxPizza.TabIndex = 1;
this.comboBoxPizza.SelectedIndexChanged += new System.EventHandler(this.ComboBoxPizza_SelectedIndexChanged);
//
// labelCount
//
this.labelCount.AutoSize = true;
2023-05-14 22:04:12 +04:00
this.labelCount.Location = new System.Drawing.Point(7, 94);
2023-02-19 23:38:16 +04:00
this.labelCount.Name = "labelCount";
this.labelCount.Size = new System.Drawing.Size(78, 15);
this.labelCount.TabIndex = 2;
this.labelCount.Text = "Количество: ";
//
// textBoxCount
//
2023-05-14 22:04:12 +04:00
this.textBoxCount.Location = new System.Drawing.Point(98, 91);
2023-02-19 23:38:16 +04:00
this.textBoxCount.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
this.textBoxCount.Name = "textBoxCount";
this.textBoxCount.Size = new System.Drawing.Size(314, 23);
this.textBoxCount.TabIndex = 3;
this.textBoxCount.TextChanged += new System.EventHandler(this.TextBoxCount_TextChanged);
//
// labelSum
//
this.labelSum.AutoSize = true;
2023-05-14 22:04:12 +04:00
this.labelSum.Location = new System.Drawing.Point(7, 117);
2023-02-19 23:38:16 +04:00
this.labelSum.Name = "labelSum";
this.labelSum.Size = new System.Drawing.Size(51, 15);
this.labelSum.TabIndex = 4;
this.labelSum.Text = "Сумма: ";
//
// textBoxSum
//
2023-05-14 22:04:12 +04:00
this.textBoxSum.Location = new System.Drawing.Point(98, 117);
2023-02-19 23:38:16 +04:00
this.textBoxSum.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
this.textBoxSum.Name = "textBoxSum";
this.textBoxSum.ReadOnly = true;
this.textBoxSum.Size = new System.Drawing.Size(314, 23);
this.textBoxSum.TabIndex = 5;
//
// buttonCancel
//
2023-05-14 22:04:12 +04:00
this.buttonCancel.Location = new System.Drawing.Point(292, 142);
2023-02-19 23:38:16 +04:00
this.buttonCancel.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
this.buttonCancel.Name = "buttonCancel";
this.buttonCancel.Size = new System.Drawing.Size(96, 24);
this.buttonCancel.TabIndex = 6;
this.buttonCancel.Text = "Отмена";
this.buttonCancel.UseVisualStyleBackColor = true;
this.buttonCancel.Click += new System.EventHandler(this.ButtonCancel_Click);
//
// buttonSave
//
2023-05-14 22:04:12 +04:00
this.buttonSave.Location = new System.Drawing.Point(190, 142);
2023-02-19 23:38:16 +04:00
this.buttonSave.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
this.buttonSave.Name = "buttonSave";
this.buttonSave.Size = new System.Drawing.Size(96, 24);
this.buttonSave.TabIndex = 7;
this.buttonSave.Text = "Сохранить";
this.buttonSave.UseVisualStyleBackColor = true;
this.buttonSave.Click += new System.EventHandler(this.ButtonSave_Click);
//
2023-05-14 22:04:12 +04:00
// comboBoxClient
//
this.comboBoxClient.FormattingEnabled = true;
this.comboBoxClient.Location = new System.Drawing.Point(98, 39);
this.comboBoxClient.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
this.comboBoxClient.Name = "comboBoxClient";
this.comboBoxClient.Size = new System.Drawing.Size(314, 23);
this.comboBoxClient.TabIndex = 8;
//
// labelClient
//
this.labelClient.AutoSize = true;
this.labelClient.Location = new System.Drawing.Point(7, 42);
this.labelClient.Name = "labelClient";
this.labelClient.Size = new System.Drawing.Size(46, 15);
this.labelClient.TabIndex = 9;
this.labelClient.Text = "Клиент";
//
2023-02-19 23:38:16 +04:00
// FormCreateOrder
//
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
2023-05-14 22:04:12 +04:00
this.ClientSize = new System.Drawing.Size(424, 189);
this.Controls.Add(this.labelClient);
this.Controls.Add(this.comboBoxClient);
2023-02-19 23:38:16 +04:00
this.Controls.Add(this.buttonSave);
this.Controls.Add(this.buttonCancel);
this.Controls.Add(this.textBoxSum);
this.Controls.Add(this.labelSum);
this.Controls.Add(this.textBoxCount);
this.Controls.Add(this.labelCount);
this.Controls.Add(this.comboBoxPizza);
this.Controls.Add(this.labelPizza);
this.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
this.Name = "FormCreateOrder";
this.Text = "Заказ";
this.Load += new System.EventHandler(this.FormCreateOrder_Load);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private Label labelPizza;
private ComboBox comboBoxPizza;
private Label labelCount;
private TextBox textBoxCount;
private Label labelSum;
private TextBox textBoxSum;
private Button buttonCancel;
private Button buttonSave;
2023-05-14 22:04:12 +04:00
private ComboBox comboBoxClient;
private Label labelClient;
2023-02-19 23:38:16 +04:00
}
}