PIbd-21_Rodionov_I.A._IceCr.../IceCreamShop/IceCreamShopView/FormCreateOrder.Designer.cs

154 lines
5.6 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()
{
labelIceCream = new Label();
comboBoxIceCream = new ComboBox();
labelCount = new Label();
textBoxCount = new TextBox();
labelSum = new Label();
textBoxSum = new TextBox();
buttonSave = new Button();
buttonCancel = new Button();
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, 42);
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, 38);
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, 72);
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, 68);
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, 98);
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, 98);
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;
//
// FormCreateOrder
//
AutoScaleDimensions = new SizeF(7F, 15F);
AutoScaleMode = AutoScaleMode.Font;
ClientSize = new Size(371, 136);
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;
}
}