121 lines
4.3 KiB
C#
121 lines
4.3 KiB
C#
namespace SewingDresses
|
|
{
|
|
partial class FormDressSelling
|
|
{
|
|
/// <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()
|
|
{
|
|
labelDressName = new Label();
|
|
labelQuantity = new Label();
|
|
textBoxQuantity = new TextBox();
|
|
comboBoxDresses = new ComboBox();
|
|
buttonSell = new Button();
|
|
buttonCancel = new Button();
|
|
SuspendLayout();
|
|
//
|
|
// labelDressName
|
|
//
|
|
labelDressName.AutoSize = true;
|
|
labelDressName.Font = new Font("Segoe UI Semibold", 14.25F, FontStyle.Bold, GraphicsUnit.Point);
|
|
labelDressName.Location = new Point(12, 25);
|
|
labelDressName.Name = "labelDressName";
|
|
labelDressName.Size = new Size(73, 25);
|
|
labelDressName.TabIndex = 0;
|
|
labelDressName.Text = "DRESS:";
|
|
//
|
|
// labelQuantity
|
|
//
|
|
labelQuantity.AutoSize = true;
|
|
labelQuantity.Font = new Font("Segoe UI Semibold", 14.25F, FontStyle.Bold, GraphicsUnit.Point);
|
|
labelQuantity.Location = new Point(12, 72);
|
|
labelQuantity.Name = "labelQuantity";
|
|
labelQuantity.Size = new Size(109, 25);
|
|
labelQuantity.TabIndex = 1;
|
|
labelQuantity.Text = "QUANTITY:";
|
|
//
|
|
// textBoxQuantity
|
|
//
|
|
textBoxQuantity.Location = new Point(127, 72);
|
|
textBoxQuantity.Name = "textBoxQuantity";
|
|
textBoxQuantity.Size = new Size(100, 23);
|
|
textBoxQuantity.TabIndex = 2;
|
|
//
|
|
// comboBoxDresses
|
|
//
|
|
comboBoxDresses.FormattingEnabled = true;
|
|
comboBoxDresses.Location = new Point(106, 27);
|
|
comboBoxDresses.Name = "comboBoxDresses";
|
|
comboBoxDresses.Size = new Size(121, 23);
|
|
comboBoxDresses.TabIndex = 3;
|
|
//
|
|
// buttonSell
|
|
//
|
|
buttonSell.Location = new Point(161, 134);
|
|
buttonSell.Name = "buttonSell";
|
|
buttonSell.Size = new Size(75, 23);
|
|
buttonSell.TabIndex = 4;
|
|
buttonSell.Text = "Sell";
|
|
buttonSell.UseVisualStyleBackColor = true;
|
|
buttonSell.Click += buttonSell_Click;
|
|
//
|
|
// buttonCancel
|
|
//
|
|
buttonCancel.Location = new Point(242, 134);
|
|
buttonCancel.Name = "buttonCancel";
|
|
buttonCancel.Size = new Size(75, 23);
|
|
buttonCancel.TabIndex = 5;
|
|
buttonCancel.Text = "Cancel";
|
|
buttonCancel.UseVisualStyleBackColor = true;
|
|
buttonCancel.Click += buttonCancel_Click;
|
|
//
|
|
// FormDressSelling
|
|
//
|
|
AutoScaleDimensions = new SizeF(7F, 15F);
|
|
AutoScaleMode = AutoScaleMode.Font;
|
|
ClientSize = new Size(329, 169);
|
|
Controls.Add(buttonCancel);
|
|
Controls.Add(buttonSell);
|
|
Controls.Add(comboBoxDresses);
|
|
Controls.Add(textBoxQuantity);
|
|
Controls.Add(labelQuantity);
|
|
Controls.Add(labelDressName);
|
|
Name = "FormDressSelling";
|
|
Text = "Dress selling";
|
|
Load += FormDressSelling_Load;
|
|
ResumeLayout(false);
|
|
PerformLayout();
|
|
}
|
|
|
|
#endregion
|
|
|
|
private Label labelDressName;
|
|
private Label labelQuantity;
|
|
private TextBox textBoxQuantity;
|
|
private ComboBox comboBoxDresses;
|
|
private Button buttonSell;
|
|
private Button buttonCancel;
|
|
}
|
|
} |