ISEbd-21.Fedotov.I.A.Diner/Diner/DinerView/FormCreateOrder.Designer.cs
Илья Федотов 520b361e50 Base.01
2024-02-24 21:32:11 +04:00

146 lines
5.1 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();
SuspendLayout();
//
// labelProduct
//
labelProduct.AutoSize = true;
labelProduct.Location = new Point(12, 9);
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, 6);
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, 37);
labelCount.Name = "labelCount";
labelCount.Size = new Size(75, 15);
labelCount.TabIndex = 4;
labelCount.Text = "Количество:";
//
// textBoxCount
//
textBoxCount.Location = new Point(93, 34);
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, 66);
label1.Name = "label1";
label1.Size = new Size(48, 15);
label1.TabIndex = 6;
label1.Text = "Сумма:";
//
// textBoxSum
//
textBoxSum.Location = new Point(93, 63);
textBoxSum.Name = "textBoxSum";
textBoxSum.ReadOnly = true;
textBoxSum.Size = new Size(289, 23);
textBoxSum.TabIndex = 7;
//
// buttonCancel
//
buttonCancel.Location = new Point(307, 92);
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, 92);
buttonSave.Name = "buttonSave";
buttonSave.Size = new Size(75, 23);
buttonSave.TabIndex = 9;
buttonSave.Text = "Сохранить";
buttonSave.UseVisualStyleBackColor = true;
buttonSave.Click += buttonSave_Click;
//
// FormCreateOrder
//
AutoScaleDimensions = new SizeF(7F, 15F);
AutoScaleMode = AutoScaleMode.Font;
ClientSize = new Size(394, 122);
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;
}
}