119 lines
4.8 KiB
C#
119 lines
4.8 KiB
C#
namespace FurnitureAssembly
|
|
{
|
|
partial class FormSell
|
|
{
|
|
/// <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.textBoxCount = new System.Windows.Forms.TextBox();
|
|
this.buttonCancel = new System.Windows.Forms.Button();
|
|
this.buttonSell = new System.Windows.Forms.Button();
|
|
this.labelNum = new System.Windows.Forms.Label();
|
|
this.labelFurniture = new System.Windows.Forms.Label();
|
|
this.comboBoxFurniture = new System.Windows.Forms.ComboBox();
|
|
this.SuspendLayout();
|
|
//
|
|
// textBoxCount
|
|
//
|
|
this.textBoxCount.Location = new System.Drawing.Point(135, 84);
|
|
this.textBoxCount.Name = "textBoxCount";
|
|
this.textBoxCount.Size = new System.Drawing.Size(160, 23);
|
|
this.textBoxCount.TabIndex = 14;
|
|
//
|
|
// buttonCancel
|
|
//
|
|
this.buttonCancel.Location = new System.Drawing.Point(332, 142);
|
|
this.buttonCancel.Name = "buttonCancel";
|
|
this.buttonCancel.Size = new System.Drawing.Size(99, 29);
|
|
this.buttonCancel.TabIndex = 13;
|
|
this.buttonCancel.Text = "Отмена";
|
|
this.buttonCancel.UseVisualStyleBackColor = true;
|
|
this.buttonCancel.Click += new System.EventHandler(this.buttonCancel_Click);
|
|
//
|
|
// buttonSell
|
|
//
|
|
this.buttonSell.Location = new System.Drawing.Point(196, 142);
|
|
this.buttonSell.Name = "buttonSell";
|
|
this.buttonSell.Size = new System.Drawing.Size(99, 29);
|
|
this.buttonSell.TabIndex = 12;
|
|
this.buttonSell.Text = "Продать";
|
|
this.buttonSell.UseVisualStyleBackColor = true;
|
|
this.buttonSell.Click += new System.EventHandler(this.buttonSell_Click);
|
|
//
|
|
// labelNum
|
|
//
|
|
this.labelNum.AutoSize = true;
|
|
this.labelNum.Location = new System.Drawing.Point(48, 87);
|
|
this.labelNum.Name = "labelNum";
|
|
this.labelNum.Size = new System.Drawing.Size(72, 15);
|
|
this.labelNum.TabIndex = 11;
|
|
this.labelNum.Text = "Количество";
|
|
//
|
|
// labelFurniture
|
|
//
|
|
this.labelFurniture.AutoSize = true;
|
|
this.labelFurniture.Location = new System.Drawing.Point(48, 46);
|
|
this.labelFurniture.Name = "labelFurniture";
|
|
this.labelFurniture.Size = new System.Drawing.Size(53, 15);
|
|
this.labelFurniture.TabIndex = 10;
|
|
this.labelFurniture.Text = "Изделие";
|
|
//
|
|
// comboBoxFurniture
|
|
//
|
|
this.comboBoxFurniture.FormattingEnabled = true;
|
|
this.comboBoxFurniture.Location = new System.Drawing.Point(135, 43);
|
|
this.comboBoxFurniture.Name = "comboBoxFurniture";
|
|
this.comboBoxFurniture.Size = new System.Drawing.Size(296, 23);
|
|
this.comboBoxFurniture.TabIndex = 9;
|
|
//
|
|
// FormSell
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(479, 214);
|
|
this.Controls.Add(this.textBoxCount);
|
|
this.Controls.Add(this.buttonCancel);
|
|
this.Controls.Add(this.buttonSell);
|
|
this.Controls.Add(this.labelNum);
|
|
this.Controls.Add(this.labelFurniture);
|
|
this.Controls.Add(this.comboBoxFurniture);
|
|
this.Name = "FormSell";
|
|
this.Text = "Продажа мебели";
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private TextBox textBoxCount;
|
|
private Button buttonCancel;
|
|
private Button buttonSell;
|
|
private Label labelNum;
|
|
private Label labelFurniture;
|
|
private ComboBox comboBoxFurniture;
|
|
}
|
|
} |