namespace IceCreamShopView
{
partial class FormCreateOrder
{
///
/// Required designer variable.
///
private System.ComponentModel.IContainer components = null;
///
/// Clean up any resources being used.
///
/// true if managed resources should be disposed; otherwise, false.
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows Form Designer generated code
///
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
///
private void InitializeComponent()
{
labelIceCream = new Label();
comboBoxIceCream = new ComboBox();
labelCount = new Label();
textBoxCount = new TextBox();
labelSum = new Label();
textBoxSum = new TextBox();
buttonSave = new Button();
buttonCancel = new Button();
comboBoxClient = new ComboBox();
labelClient = new Label();
SuspendLayout();
//
// labelIceCream
//
labelIceCream.AutoSize = true;
labelIceCream.Location = new Point(14, 10);
labelIceCream.Margin = new Padding(4, 0, 4, 0);
labelIceCream.Name = "labelIceCream";
labelIceCream.Size = new Size(80, 15);
labelIceCream.TabIndex = 1;
labelIceCream.Text = "Мороженое :";
//
// comboBoxIceCream
//
comboBoxIceCream.DropDownStyle = ComboBoxStyle.DropDownList;
comboBoxIceCream.FormattingEnabled = true;
comboBoxIceCream.Location = new Point(102, 7);
comboBoxIceCream.Margin = new Padding(4, 3, 4, 3);
comboBoxIceCream.Name = "comboBoxIceCream";
comboBoxIceCream.Size = new Size(252, 23);
comboBoxIceCream.TabIndex = 2;
comboBoxIceCream.SelectedIndexChanged += ComboBoxIceCream_SelectedIndexChanged;
//
// labelCount
//
labelCount.AutoSize = true;
labelCount.Location = new Point(14, 74);
labelCount.Margin = new Padding(4, 0, 4, 0);
labelCount.Name = "labelCount";
labelCount.Size = new Size(78, 15);
labelCount.TabIndex = 3;
labelCount.Text = "Количество :";
//
// textBoxCount
//
textBoxCount.Location = new Point(102, 71);
textBoxCount.Margin = new Padding(4, 3, 4, 3);
textBoxCount.Name = "textBoxCount";
textBoxCount.Size = new Size(252, 23);
textBoxCount.TabIndex = 4;
textBoxCount.TextChanged += TextBoxCount_TextChanged;
//
// labelSum
//
labelSum.AutoSize = true;
labelSum.Location = new Point(14, 106);
labelSum.Margin = new Padding(4, 0, 4, 0);
labelSum.Name = "labelSum";
labelSum.Size = new Size(51, 15);
labelSum.TabIndex = 5;
labelSum.Text = "Сумма :";
//
// textBoxSum
//
textBoxSum.Location = new Point(102, 103);
textBoxSum.Margin = new Padding(4, 3, 4, 3);
textBoxSum.Name = "textBoxSum";
textBoxSum.ReadOnly = true;
textBoxSum.Size = new Size(252, 23);
textBoxSum.TabIndex = 6;
//
// buttonSave
//
buttonSave.Location = new Point(161, 135);
buttonSave.Margin = new Padding(4, 3, 4, 3);
buttonSave.Name = "buttonSave";
buttonSave.Size = new Size(88, 27);
buttonSave.TabIndex = 7;
buttonSave.Text = "Сохранить";
buttonSave.UseVisualStyleBackColor = true;
buttonSave.Click += ButtonSave_Click;
//
// buttonCancel
//
buttonCancel.Location = new Point(255, 135);
buttonCancel.Margin = new Padding(4, 3, 4, 3);
buttonCancel.Name = "buttonCancel";
buttonCancel.Size = new Size(88, 27);
buttonCancel.TabIndex = 8;
buttonCancel.Text = "Отмена";
buttonCancel.UseVisualStyleBackColor = true;
buttonCancel.Click += ButtonCancel_Click;
//
// comboBoxClient
//
comboBoxClient.DropDownStyle = ComboBoxStyle.DropDownList;
comboBoxClient.FormattingEnabled = true;
comboBoxClient.Location = new Point(102, 39);
comboBoxClient.Margin = new Padding(4, 3, 4, 3);
comboBoxClient.Name = "comboBoxClient";
comboBoxClient.Size = new Size(252, 23);
comboBoxClient.TabIndex = 10;
//
// labelClient
//
labelClient.AutoSize = true;
labelClient.Location = new Point(14, 42);
labelClient.Margin = new Padding(4, 0, 4, 0);
labelClient.Name = "labelClient";
labelClient.Size = new Size(52, 15);
labelClient.TabIndex = 9;
labelClient.Text = "Клиент :";
//
// FormCreateOrder
//
AutoScaleDimensions = new SizeF(7F, 15F);
AutoScaleMode = AutoScaleMode.Font;
ClientSize = new Size(371, 171);
Controls.Add(comboBoxClient);
Controls.Add(labelClient);
Controls.Add(buttonCancel);
Controls.Add(buttonSave);
Controls.Add(textBoxSum);
Controls.Add(labelSum);
Controls.Add(textBoxCount);
Controls.Add(labelCount);
Controls.Add(comboBoxIceCream);
Controls.Add(labelIceCream);
Name = "FormCreateOrder";
StartPosition = FormStartPosition.CenterScreen;
Text = "Заказ";
Load += FormCreateOrder_Load;
ResumeLayout(false);
PerformLayout();
}
#endregion
private Label labelIceCream;
private ComboBox comboBoxIceCream;
private Label labelCount;
private TextBox textBoxCount;
private Label labelSum;
private TextBox textBoxSum;
private Button buttonSave;
private Button buttonCancel;
private ComboBox comboBoxClient;
private Label labelClient;
}
}