145 lines
5.1 KiB
C#
145 lines
5.1 KiB
C#
namespace ProjectFlowerShop
|
|
{
|
|
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();
|
|
labelNumber = new Label();
|
|
LabelSum = new Label();
|
|
buttonSave = new Button();
|
|
buttonCancel = new Button();
|
|
textBoxCount = new TextBox();
|
|
comboBoxProduct = new ComboBox();
|
|
textBoxSum = new TextBox();
|
|
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(12, 113);
|
|
LabelSum.Name = "LabelSum";
|
|
LabelSum.Size = new Size(55, 20);
|
|
LabelSum.TabIndex = 2;
|
|
LabelSum.Text = "Сумма";
|
|
//
|
|
// buttonSave
|
|
//
|
|
buttonSave.Location = new Point(292, 158);
|
|
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(411, 158);
|
|
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, 110);
|
|
textBoxSum.Name = "textBoxSum";
|
|
textBoxSum.ReadOnly = true;
|
|
textBoxSum.Size = new Size(274, 27);
|
|
textBoxSum.TabIndex = 7;
|
|
textBoxSum.TextChanged += textBox2_TextChanged;
|
|
//
|
|
// FormCreateOrder
|
|
//
|
|
AutoScaleDimensions = new SizeF(8F, 20F);
|
|
AutoScaleMode = AutoScaleMode.Font;
|
|
ClientSize = new Size(514, 199);
|
|
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;
|
|
}
|
|
} |