149 lines
6.6 KiB
C#
149 lines
6.6 KiB
C#
namespace SewingDresses
|
|
{
|
|
partial class FormOrderCreation
|
|
{
|
|
/// <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.dressLabel = new System.Windows.Forms.Label();
|
|
this.quantityLabel = new System.Windows.Forms.Label();
|
|
this.priceLabel = new System.Windows.Forms.Label();
|
|
this.dressComboBox = new System.Windows.Forms.ComboBox();
|
|
this.quantityTextBox = new System.Windows.Forms.TextBox();
|
|
this.priceTextBox = new System.Windows.Forms.TextBox();
|
|
this.ButtonSave = new System.Windows.Forms.Button();
|
|
this.ButtonCancel = new System.Windows.Forms.Button();
|
|
this.SuspendLayout();
|
|
//
|
|
// dressLabel
|
|
//
|
|
this.dressLabel.AutoSize = true;
|
|
this.dressLabel.Font = new System.Drawing.Font("Segoe UI", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point);
|
|
this.dressLabel.Location = new System.Drawing.Point(12, 9);
|
|
this.dressLabel.Name = "dressLabel";
|
|
this.dressLabel.Size = new System.Drawing.Size(82, 25);
|
|
this.dressLabel.TabIndex = 0;
|
|
this.dressLabel.Text = "Product:";
|
|
//
|
|
// quantityLabel
|
|
//
|
|
this.quantityLabel.AutoSize = true;
|
|
this.quantityLabel.Font = new System.Drawing.Font("Segoe UI", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point);
|
|
this.quantityLabel.Location = new System.Drawing.Point(12, 50);
|
|
this.quantityLabel.Name = "quantityLabel";
|
|
this.quantityLabel.Size = new System.Drawing.Size(88, 25);
|
|
this.quantityLabel.TabIndex = 1;
|
|
this.quantityLabel.Text = "Quantity:";
|
|
//
|
|
// priceLabel
|
|
//
|
|
this.priceLabel.AutoSize = true;
|
|
this.priceLabel.Font = new System.Drawing.Font("Segoe UI", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point);
|
|
this.priceLabel.Location = new System.Drawing.Point(12, 90);
|
|
this.priceLabel.Name = "priceLabel";
|
|
this.priceLabel.Size = new System.Drawing.Size(56, 25);
|
|
this.priceLabel.TabIndex = 2;
|
|
this.priceLabel.Text = "Total:";
|
|
//
|
|
// dressComboBox
|
|
//
|
|
this.dressComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
|
|
this.dressComboBox.FormattingEnabled = true;
|
|
this.dressComboBox.Location = new System.Drawing.Point(114, 12);
|
|
this.dressComboBox.Name = "dressComboBox";
|
|
this.dressComboBox.Size = new System.Drawing.Size(320, 23);
|
|
this.dressComboBox.TabIndex = 3;
|
|
this.dressComboBox.SelectedIndexChanged += new System.EventHandler(this.DressComboBox_SelectedIndexChanged);
|
|
//
|
|
// quantityTextBox
|
|
//
|
|
this.quantityTextBox.Location = new System.Drawing.Point(114, 52);
|
|
this.quantityTextBox.Name = "quantityTextBox";
|
|
this.quantityTextBox.Size = new System.Drawing.Size(320, 23);
|
|
this.quantityTextBox.TabIndex = 4;
|
|
this.quantityTextBox.TextChanged += new System.EventHandler(this.QuantityTextBox_TextChanged);
|
|
//
|
|
// priceTextBox
|
|
//
|
|
this.priceTextBox.Location = new System.Drawing.Point(114, 90);
|
|
this.priceTextBox.Name = "priceTextBox";
|
|
this.priceTextBox.ReadOnly = true;
|
|
this.priceTextBox.Size = new System.Drawing.Size(320, 23);
|
|
this.priceTextBox.TabIndex = 5;
|
|
//
|
|
// ButtonSave
|
|
//
|
|
this.ButtonSave.Location = new System.Drawing.Point(220, 138);
|
|
this.ButtonSave.Name = "ButtonSave";
|
|
this.ButtonSave.Size = new System.Drawing.Size(100, 32);
|
|
this.ButtonSave.TabIndex = 6;
|
|
this.ButtonSave.Text = "Save";
|
|
this.ButtonSave.UseVisualStyleBackColor = true;
|
|
this.ButtonSave.Click += new System.EventHandler(this.ButtonSave_Click);
|
|
//
|
|
// ButtonCancel
|
|
//
|
|
this.ButtonCancel.Location = new System.Drawing.Point(334, 138);
|
|
this.ButtonCancel.Name = "ButtonCancel";
|
|
this.ButtonCancel.Size = new System.Drawing.Size(100, 32);
|
|
this.ButtonCancel.TabIndex = 7;
|
|
this.ButtonCancel.Text = "Cancel";
|
|
this.ButtonCancel.UseVisualStyleBackColor = true;
|
|
this.ButtonCancel.Click += new System.EventHandler(this.ButtonCancel_Click);
|
|
//
|
|
// FormOrderCreation
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(446, 181);
|
|
this.Controls.Add(this.ButtonCancel);
|
|
this.Controls.Add(this.ButtonSave);
|
|
this.Controls.Add(this.priceTextBox);
|
|
this.Controls.Add(this.quantityTextBox);
|
|
this.Controls.Add(this.dressComboBox);
|
|
this.Controls.Add(this.priceLabel);
|
|
this.Controls.Add(this.quantityLabel);
|
|
this.Controls.Add(this.dressLabel);
|
|
this.Name = "FormOrderCreation";
|
|
this.Text = "FormOrderCreation";
|
|
this.Load += new System.EventHandler(this.FormOrderCreation_Load);
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private Label dressLabel;
|
|
private Label quantityLabel;
|
|
private Label priceLabel;
|
|
private ComboBox dressComboBox;
|
|
private TextBox quantityTextBox;
|
|
private TextBox priceTextBox;
|
|
private Button ButtonSave;
|
|
private Button ButtonCancel;
|
|
}
|
|
} |