ISEbd-21.Fedotov.I.A.Diner/Diner/DinerView/FormCreateOrder.Designer.cs
2024-05-13 21:06:39 +04:00

170 lines
4.9 KiB
C#

namespace DinerView
{
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() {
labelProduct = new Label();
comboBoxProduct = new ComboBox();
labelCount = new Label();
textBoxCount = new TextBox();
label1 = new Label();
textBoxSum = new TextBox();
buttonCancel = new Button();
buttonSave = new Button();
labelClient = new Label();
comboBoxClient = new ComboBox();
SuspendLayout();
//
// labelProduct
//
labelProduct.AutoSize = true;
labelProduct.Location = new Point(12, 39);
labelProduct.Name = "labelProduct";
labelProduct.Size = new Size(37, 15);
labelProduct.TabIndex = 0;
labelProduct.Text = "Cнэк:";
//
// comboBoxProduct
//
comboBoxProduct.BackColor = SystemColors.ButtonShadow;
comboBoxProduct.DropDownStyle = ComboBoxStyle.DropDownList;
comboBoxProduct.FormattingEnabled = true;
comboBoxProduct.Location = new Point(93, 36);
comboBoxProduct.Name = "comboBoxProduct";
comboBoxProduct.Size = new Size(289, 23);
comboBoxProduct.TabIndex = 3;
comboBoxProduct.SelectedIndexChanged += comboBoxProduct_SelectedIndexChanged;
//
// labelCount
//
labelCount.AutoSize = true;
labelCount.Location = new Point(12, 67);
labelCount.Name = "labelCount";
labelCount.Size = new Size(75, 15);
labelCount.TabIndex = 4;
labelCount.Text = "Количество:";
//
// textBoxCount
//
textBoxCount.Location = new Point(93, 64);
textBoxCount.Name = "textBoxCount";
textBoxCount.Size = new Size(289, 23);
textBoxCount.TabIndex = 5;
textBoxCount.TextChanged += textBoxCount_TextChanged;
//
// label1
//
label1.AutoSize = true;
label1.Location = new Point(12, 96);
label1.Name = "label1";
label1.Size = new Size(48, 15);
label1.TabIndex = 6;
label1.Text = "Сумма:";
//
// textBoxSum
//
textBoxSum.Location = new Point(93, 93);
textBoxSum.Name = "textBoxSum";
textBoxSum.ReadOnly = true;
textBoxSum.Size = new Size(289, 23);
textBoxSum.TabIndex = 7;
//
// buttonCancel
//
buttonCancel.Location = new Point(307, 122);
buttonCancel.Name = "buttonCancel";
buttonCancel.Size = new Size(75, 23);
buttonCancel.TabIndex = 8;
buttonCancel.Text = "Отмена";
buttonCancel.UseVisualStyleBackColor = true;
buttonCancel.Click += buttonCancel_Click;
//
// buttonSave
//
buttonSave.Location = new Point(226, 122);
buttonSave.Name = "buttonSave";
buttonSave.Size = new Size(75, 23);
buttonSave.TabIndex = 9;
buttonSave.Text = "Сохранить";
buttonSave.UseVisualStyleBackColor = true;
buttonSave.Click += buttonSave_Click;
//
// labelClient
//
labelClient.AutoSize = true;
labelClient.Location = new Point(12, 9);
labelClient.Name = "labelClient";
labelClient.Size = new Size(49, 15);
labelClient.TabIndex = 10;
labelClient.Text = "Клиент:";
//
// comboBoxClient
//
comboBoxClient.BackColor = SystemColors.ButtonShadow;
comboBoxClient.DropDownStyle = ComboBoxStyle.DropDownList;
comboBoxClient.FormattingEnabled = true;
comboBoxClient.Location = new Point(93, 7);
comboBoxClient.Name = "comboBoxClient";
comboBoxClient.Size = new Size(289, 23);
comboBoxClient.TabIndex = 11;
//
// FormCreateOrder
//
AutoScaleDimensions = new SizeF(7F, 15F);
AutoScaleMode = AutoScaleMode.Font;
ClientSize = new Size(394, 156);
Controls.Add(comboBoxClient);
Controls.Add(labelClient);
Controls.Add(buttonSave);
Controls.Add(buttonCancel);
Controls.Add(textBoxSum);
Controls.Add(label1);
Controls.Add(textBoxCount);
Controls.Add(labelCount);
Controls.Add(comboBoxProduct);
Controls.Add(labelProduct);
Name = "FormCreateOrder";
Text = "Заказ";
Load += FormCreateOrder_Load;
ResumeLayout(false);
PerformLayout();
}
#endregion
private Label labelProduct;
private ComboBox comboBoxProduct;
private Label labelCount;
private TextBox textBoxCount;
private Label label1;
private TextBox textBoxSum;
private Button buttonCancel;
private Button buttonSave;
private Label labelClient;
private ComboBox comboBoxClient;
}
}