150 lines
6.5 KiB
C#
150 lines
6.5 KiB
C#
namespace FurnitureAssemblyView
|
|
{
|
|
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()
|
|
{
|
|
this.labelFurniture = new System.Windows.Forms.Label();
|
|
this.labelCount = new System.Windows.Forms.Label();
|
|
this.labelSum = new System.Windows.Forms.Label();
|
|
this.comboBoxFurniture = new System.Windows.Forms.ComboBox();
|
|
this.textBoxCount = new System.Windows.Forms.TextBox();
|
|
this.textBoxSum = new System.Windows.Forms.TextBox();
|
|
this.buttonSave = new System.Windows.Forms.Button();
|
|
this.buttonCancel = new System.Windows.Forms.Button();
|
|
this.SuspendLayout();
|
|
//
|
|
// labelFurniture
|
|
//
|
|
this.labelFurniture.AutoSize = true;
|
|
this.labelFurniture.Location = new System.Drawing.Point(21, 18);
|
|
this.labelFurniture.Name = "labelFurniture";
|
|
this.labelFurniture.Size = new System.Drawing.Size(56, 15);
|
|
this.labelFurniture.TabIndex = 0;
|
|
this.labelFurniture.Text = "Изделие:";
|
|
//
|
|
// labelCount
|
|
//
|
|
this.labelCount.AutoSize = true;
|
|
this.labelCount.Location = new System.Drawing.Point(21, 52);
|
|
this.labelCount.Name = "labelCount";
|
|
this.labelCount.Size = new System.Drawing.Size(75, 15);
|
|
this.labelCount.TabIndex = 1;
|
|
this.labelCount.Text = "Количество:";
|
|
//
|
|
// labelSum
|
|
//
|
|
this.labelSum.AutoSize = true;
|
|
this.labelSum.Location = new System.Drawing.Point(21, 85);
|
|
this.labelSum.Name = "labelSum";
|
|
this.labelSum.Size = new System.Drawing.Size(48, 15);
|
|
this.labelSum.TabIndex = 2;
|
|
this.labelSum.Text = "Сумма:";
|
|
//
|
|
// comboBoxFurniture
|
|
//
|
|
this.comboBoxFurniture.FormattingEnabled = true;
|
|
this.comboBoxFurniture.Location = new System.Drawing.Point(127, 15);
|
|
this.comboBoxFurniture.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
|
|
this.comboBoxFurniture.Name = "comboBoxFurniture";
|
|
this.comboBoxFurniture.Size = new System.Drawing.Size(244, 23);
|
|
this.comboBoxFurniture.TabIndex = 3;
|
|
this.comboBoxFurniture.SelectedIndexChanged += new System.EventHandler(this.ComboBoxFurniture_SelectedIndexChanged);
|
|
//
|
|
// textBoxCount
|
|
//
|
|
this.textBoxCount.Location = new System.Drawing.Point(127, 49);
|
|
this.textBoxCount.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
|
|
this.textBoxCount.Name = "textBoxCount";
|
|
this.textBoxCount.Size = new System.Drawing.Size(244, 23);
|
|
this.textBoxCount.TabIndex = 4;
|
|
this.textBoxCount.TextChanged += new System.EventHandler(this.TextBoxCount_TextChanged);
|
|
//
|
|
// textBoxSum
|
|
//
|
|
this.textBoxSum.Location = new System.Drawing.Point(127, 82);
|
|
this.textBoxSum.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
|
|
this.textBoxSum.Name = "textBoxSum";
|
|
this.textBoxSum.Size = new System.Drawing.Size(244, 23);
|
|
this.textBoxSum.TabIndex = 5;
|
|
//
|
|
// buttonSave
|
|
//
|
|
this.buttonSave.Location = new System.Drawing.Point(186, 116);
|
|
this.buttonSave.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
|
|
this.buttonSave.Name = "buttonSave";
|
|
this.buttonSave.Size = new System.Drawing.Size(82, 22);
|
|
this.buttonSave.TabIndex = 6;
|
|
this.buttonSave.Text = "Сохранить";
|
|
this.buttonSave.UseVisualStyleBackColor = true;
|
|
this.buttonSave.Click += new System.EventHandler(this.ButtonSave_Click);
|
|
//
|
|
// buttonCancel
|
|
//
|
|
this.buttonCancel.Location = new System.Drawing.Point(274, 116);
|
|
this.buttonCancel.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
|
|
this.buttonCancel.Name = "buttonCancel";
|
|
this.buttonCancel.Size = new System.Drawing.Size(82, 22);
|
|
this.buttonCancel.TabIndex = 7;
|
|
this.buttonCancel.Text = "Отмена";
|
|
this.buttonCancel.UseVisualStyleBackColor = true;
|
|
this.buttonCancel.Click += new System.EventHandler(this.ButtonCancel_Click);
|
|
//
|
|
// FormCreateOrder
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(384, 157);
|
|
this.Controls.Add(this.buttonCancel);
|
|
this.Controls.Add(this.buttonSave);
|
|
this.Controls.Add(this.textBoxSum);
|
|
this.Controls.Add(this.textBoxCount);
|
|
this.Controls.Add(this.comboBoxFurniture);
|
|
this.Controls.Add(this.labelSum);
|
|
this.Controls.Add(this.labelCount);
|
|
this.Controls.Add(this.labelFurniture);
|
|
this.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
|
|
this.Name = "FormCreateOrder";
|
|
this.Text = "Заказ";
|
|
this.Load += new System.EventHandler(this.FormCreateOrder_Load);
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private Label labelFurniture;
|
|
private Label labelCount;
|
|
private Label labelSum;
|
|
private ComboBox comboBoxFurniture;
|
|
private TextBox textBoxCount;
|
|
private TextBox textBoxSum;
|
|
private Button buttonSave;
|
|
private Button buttonCancel;
|
|
}
|
|
} |