PIbd-23-Lisov-N.A-SewingDre.../SewingDresses/FormOrderCreation.Designer.cs

148 lines
5.4 KiB
C#
Raw Permalink Normal View History

2023-02-13 02:45:41 +04:00
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()
{
2023-06-03 23:53:09 +04:00
dressLabel = new Label();
quantityLabel = new Label();
priceLabel = new Label();
dressComboBox = new ComboBox();
quantityTextBox = new TextBox();
priceTextBox = new TextBox();
ButtonSave = new Button();
ButtonCancel = new Button();
SuspendLayout();
2023-02-13 02:45:41 +04:00
//
// dressLabel
//
2023-06-03 23:53:09 +04:00
dressLabel.AutoSize = true;
dressLabel.Font = new Font("Segoe UI", 14.25F, FontStyle.Regular, GraphicsUnit.Point);
dressLabel.Location = new Point(12, 9);
dressLabel.Name = "dressLabel";
dressLabel.Size = new Size(82, 25);
dressLabel.TabIndex = 0;
dressLabel.Text = "Product:";
2023-02-13 02:45:41 +04:00
//
// quantityLabel
//
2023-06-03 23:53:09 +04:00
quantityLabel.AutoSize = true;
quantityLabel.Font = new Font("Segoe UI", 14.25F, FontStyle.Regular, GraphicsUnit.Point);
quantityLabel.Location = new Point(12, 50);
quantityLabel.Name = "quantityLabel";
quantityLabel.Size = new Size(88, 25);
quantityLabel.TabIndex = 1;
quantityLabel.Text = "Quantity:";
2023-02-13 02:45:41 +04:00
//
// priceLabel
//
2023-06-03 23:53:09 +04:00
priceLabel.AutoSize = true;
priceLabel.Font = new Font("Segoe UI", 14.25F, FontStyle.Regular, GraphicsUnit.Point);
priceLabel.Location = new Point(12, 90);
priceLabel.Name = "priceLabel";
priceLabel.Size = new Size(56, 25);
priceLabel.TabIndex = 2;
priceLabel.Text = "Total:";
2023-02-13 02:45:41 +04:00
//
// dressComboBox
//
2023-06-03 23:53:09 +04:00
dressComboBox.DropDownStyle = ComboBoxStyle.DropDownList;
dressComboBox.FormattingEnabled = true;
dressComboBox.Location = new Point(114, 12);
dressComboBox.Name = "dressComboBox";
dressComboBox.Size = new Size(320, 23);
dressComboBox.TabIndex = 3;
dressComboBox.SelectedIndexChanged += DressComboBox_SelectedIndexChanged;
2023-02-13 02:45:41 +04:00
//
// quantityTextBox
//
2023-06-03 23:53:09 +04:00
quantityTextBox.Location = new Point(114, 52);
quantityTextBox.Name = "quantityTextBox";
quantityTextBox.Size = new Size(320, 23);
quantityTextBox.TabIndex = 4;
quantityTextBox.TextChanged += QuantityTextBox_TextChanged;
2023-02-13 02:45:41 +04:00
//
// priceTextBox
//
2023-06-03 23:53:09 +04:00
priceTextBox.Location = new Point(114, 90);
priceTextBox.Name = "priceTextBox";
priceTextBox.ReadOnly = true;
priceTextBox.Size = new Size(320, 23);
priceTextBox.TabIndex = 5;
2023-02-13 02:45:41 +04:00
//
// ButtonSave
//
2023-06-03 23:53:09 +04:00
ButtonSave.Location = new Point(220, 138);
ButtonSave.Name = "ButtonSave";
ButtonSave.Size = new Size(100, 32);
ButtonSave.TabIndex = 6;
ButtonSave.Text = "Save";
ButtonSave.UseVisualStyleBackColor = true;
ButtonSave.Click += ButtonSave_Click;
2023-02-13 02:45:41 +04:00
//
// ButtonCancel
//
2023-06-03 23:53:09 +04:00
ButtonCancel.Location = new Point(334, 138);
ButtonCancel.Name = "ButtonCancel";
ButtonCancel.Size = new Size(100, 32);
ButtonCancel.TabIndex = 7;
ButtonCancel.Text = "Cancel";
ButtonCancel.UseVisualStyleBackColor = true;
ButtonCancel.Click += ButtonCancel_Click;
2023-02-13 02:45:41 +04:00
//
// FormOrderCreation
//
2023-06-03 23:53:09 +04:00
AutoScaleDimensions = new SizeF(7F, 15F);
AutoScaleMode = AutoScaleMode.Font;
ClientSize = new Size(446, 181);
Controls.Add(ButtonCancel);
Controls.Add(ButtonSave);
Controls.Add(priceTextBox);
Controls.Add(quantityTextBox);
Controls.Add(dressComboBox);
Controls.Add(priceLabel);
Controls.Add(quantityLabel);
Controls.Add(dressLabel);
Name = "FormOrderCreation";
Text = "OrderCreation";
Load += FormOrderCreation_Load;
ResumeLayout(false);
PerformLayout();
2023-02-13 02:45:41 +04:00
}
#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;
}
}