namespace ProjectFlowerShop
{
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()
{
labelProduct = new Label();
labelNumber = new Label();
LabelSum = new Label();
buttonSave = new Button();
buttonCancel = new Button();
textBoxCount = new TextBox();
comboBoxProduct = new ComboBox();
textBoxSum = new TextBox();
comboBoxClient = new ComboBox();
labelClient = new Label();
SuspendLayout();
//
// labelProduct
//
labelProduct.AutoSize = true;
labelProduct.Location = new Point(12, 29);
labelProduct.Name = "labelProduct";
labelProduct.Size = new Size(68, 20);
labelProduct.TabIndex = 0;
labelProduct.Text = "Изделие";
//
// labelNumber
//
labelNumber.AutoSize = true;
labelNumber.Location = new Point(12, 71);
labelNumber.Name = "labelNumber";
labelNumber.Size = new Size(58, 20);
labelNumber.TabIndex = 1;
labelNumber.Text = "Кол-во";
//
// LabelSum
//
LabelSum.AutoSize = true;
LabelSum.Location = new Point(15, 159);
LabelSum.Name = "LabelSum";
LabelSum.Size = new Size(55, 20);
LabelSum.TabIndex = 2;
LabelSum.Text = "Сумма";
//
// buttonSave
//
buttonSave.Location = new Point(295, 222);
buttonSave.Name = "buttonSave";
buttonSave.Size = new Size(94, 29);
buttonSave.TabIndex = 3;
buttonSave.Text = "Сохранить";
buttonSave.UseVisualStyleBackColor = true;
buttonSave.Click += buttonSave_Click;
//
// buttonCancel
//
buttonCancel.Location = new Point(408, 222);
buttonCancel.Name = "buttonCancel";
buttonCancel.Size = new Size(94, 29);
buttonCancel.TabIndex = 4;
buttonCancel.Text = "Отмена";
buttonCancel.UseVisualStyleBackColor = true;
buttonCancel.Click += buttonCancel_Click;
//
// textBoxCount
//
textBoxCount.Location = new Point(97, 68);
textBoxCount.Name = "textBoxCount";
textBoxCount.Size = new Size(274, 27);
textBoxCount.TabIndex = 5;
textBoxCount.TextChanged += textBox1_TextChanged;
//
// comboBoxProduct
//
comboBoxProduct.FormattingEnabled = true;
comboBoxProduct.Location = new Point(97, 26);
comboBoxProduct.Name = "comboBoxProduct";
comboBoxProduct.Size = new Size(274, 28);
comboBoxProduct.TabIndex = 6;
comboBoxProduct.SelectedIndexChanged += comboBox1_SelectedIndexChanged;
//
// textBoxSum
//
textBoxSum.Location = new Point(97, 156);
textBoxSum.Name = "textBoxSum";
textBoxSum.ReadOnly = true;
textBoxSum.Size = new Size(274, 27);
textBoxSum.TabIndex = 7;
textBoxSum.TextChanged += textBox2_TextChanged;
//
// comboBoxClient
//
comboBoxClient.FormattingEnabled = true;
comboBoxClient.Location = new Point(97, 112);
comboBoxClient.Name = "comboBoxClient";
comboBoxClient.Size = new Size(274, 28);
comboBoxClient.TabIndex = 8;
//
// labelClient
//
labelClient.AutoSize = true;
labelClient.Location = new Point(12, 115);
labelClient.Name = "labelClient";
labelClient.Size = new Size(58, 20);
labelClient.TabIndex = 9;
labelClient.Text = "Кол-во";
//
// FormCreateOrder
//
AutoScaleDimensions = new SizeF(8F, 20F);
AutoScaleMode = AutoScaleMode.Font;
ClientSize = new Size(514, 263);
Controls.Add(labelClient);
Controls.Add(comboBoxClient);
Controls.Add(textBoxSum);
Controls.Add(comboBoxProduct);
Controls.Add(textBoxCount);
Controls.Add(buttonCancel);
Controls.Add(buttonSave);
Controls.Add(LabelSum);
Controls.Add(labelNumber);
Controls.Add(labelProduct);
Name = "FormCreateOrder";
Text = "Заказ";
Load += FormCreateOrder_Load;
ResumeLayout(false);
PerformLayout();
}
#endregion
private Label labelProduct;
private Label labelNumber;
private Label LabelSum;
private Button buttonSave;
private Button buttonCancel;
private TextBox textBoxCount;
private ComboBox comboBoxProduct;
private TextBox textBoxSum;
private ComboBox comboBoxClient;
private Label labelClient;
}
}