PIbd-22_Tsukanova_I.V._IceC.../IceCreamShop/IceCreamShop/FormCreateOrder.Designer.cs
2023-03-27 11:05:16 +04:00

171 lines
6.1 KiB
C#

namespace IceCreamShopView
{
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()
{
buttonCancel = new Button();
buttonSave = new Button();
textBoxSum = new TextBox();
textBoxCount = new TextBox();
comboBoxIceCream = new ComboBox();
labelSum = new Label();
labelCount = new Label();
labelName = new Label();
comboBoxClient = new ComboBox();
labelClient = new Label();
SuspendLayout();
//
// buttonCancel
//
buttonCancel.Location = new Point(243, 152);
buttonCancel.Margin = new Padding(3, 2, 3, 2);
buttonCancel.Name = "buttonCancel";
buttonCancel.Size = new Size(82, 22);
buttonCancel.TabIndex = 15;
buttonCancel.Text = "Отмена";
buttonCancel.UseVisualStyleBackColor = true;
buttonCancel.Click += buttonCancel_Click;
//
// buttonSave
//
buttonSave.Location = new Point(155, 152);
buttonSave.Margin = new Padding(3, 2, 3, 2);
buttonSave.Name = "buttonSave";
buttonSave.Size = new Size(82, 22);
buttonSave.TabIndex = 14;
buttonSave.Text = "Сохранить";
buttonSave.UseVisualStyleBackColor = true;
buttonSave.Click += buttonSave_Click;
//
// textBoxSum
//
textBoxSum.Location = new Point(95, 72);
textBoxSum.Margin = new Padding(3, 2, 3, 2);
textBoxSum.Name = "textBoxSum";
textBoxSum.Size = new Size(230, 23);
textBoxSum.TabIndex = 13;
//
// textBoxCount
//
textBoxCount.Location = new Point(95, 38);
textBoxCount.Margin = new Padding(3, 2, 3, 2);
textBoxCount.Name = "textBoxCount";
textBoxCount.Size = new Size(230, 23);
textBoxCount.TabIndex = 12;
textBoxCount.TextChanged += textBoxCount_TextChanged;
//
// comboBoxIceCream
//
comboBoxIceCream.FormattingEnabled = true;
comboBoxIceCream.Location = new Point(95, 3);
comboBoxIceCream.Margin = new Padding(3, 2, 3, 2);
comboBoxIceCream.Name = "comboBoxIceCream";
comboBoxIceCream.Size = new Size(230, 23);
comboBoxIceCream.TabIndex = 11;
comboBoxIceCream.SelectedIndexChanged += comboBoxIceCream_SelectedIndexChanged;
//
// labelSum
//
labelSum.AutoSize = true;
labelSum.Location = new Point(12, 80);
labelSum.Name = "labelSum";
labelSum.Size = new Size(48, 15);
labelSum.TabIndex = 10;
labelSum.Text = "Сумма:";
//
// labelCount
//
labelCount.AutoSize = true;
labelCount.Location = new Point(12, 43);
labelCount.Name = "labelCount";
labelCount.Size = new Size(75, 15);
labelCount.TabIndex = 9;
labelCount.Text = "Количество:";
//
// labelName
//
labelName.AutoSize = true;
labelName.Location = new Point(12, 6);
labelName.Name = "labelName";
labelName.Size = new Size(77, 15);
labelName.TabIndex = 8;
labelName.Text = "Мороженое:";
//
// comboBoxClient
//
comboBoxClient.FormattingEnabled = true;
comboBoxClient.Location = new Point(95, 111);
comboBoxClient.Name = "comboBoxClient";
comboBoxClient.Size = new Size(230, 23);
comboBoxClient.TabIndex = 17;
//
// labelClient
//
labelClient.AutoSize = true;
labelClient.Location = new Point(12, 114);
labelClient.Name = "labelClient";
labelClient.Size = new Size(49, 15);
labelClient.TabIndex = 16;
labelClient.Text = "Клиент:";
//
// FormCreateOrder
//
AutoScaleDimensions = new SizeF(7F, 15F);
AutoScaleMode = AutoScaleMode.Font;
ClientSize = new Size(334, 184);
Controls.Add(comboBoxClient);
Controls.Add(labelClient);
Controls.Add(buttonCancel);
Controls.Add(buttonSave);
Controls.Add(textBoxSum);
Controls.Add(textBoxCount);
Controls.Add(comboBoxIceCream);
Controls.Add(labelSum);
Controls.Add(labelCount);
Controls.Add(labelName);
Name = "FormCreateOrder";
Text = "Заказ";
Load += FormCreateOrder_Load;
ResumeLayout(false);
PerformLayout();
}
#endregion
private Button buttonCancel;
private Button buttonSave;
private TextBox textBoxSum;
private TextBox textBoxCount;
private ComboBox comboBoxIceCream;
private Label labelSum;
private Label labelCount;
private Label labelName;
private ComboBox comboBoxClient;
private Label labelClient;
}
}