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

147 lines
5.4 KiB
C#
Raw Permalink Normal View History

2023-02-27 00:35:38 +04:00
namespace SewingDresses
{
partial class FormAtelierRestocking
{
/// <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-01 01:58:22 +04:00
atelierComboBox = new ComboBox();
atelierLabel = new Label();
dressComboBox = new ComboBox();
dressLabel = new Label();
quantityTextBox = new TextBox();
quantityLabel = new Label();
ButtonCancel = new Button();
ButtonSave = new Button();
SuspendLayout();
2023-02-27 00:35:38 +04:00
//
// atelierComboBox
//
2023-06-01 01:58:22 +04:00
atelierComboBox.DropDownStyle = ComboBoxStyle.DropDownList;
atelierComboBox.FormattingEnabled = true;
atelierComboBox.Location = new Point(114, 21);
atelierComboBox.Name = "atelierComboBox";
atelierComboBox.Size = new Size(293, 23);
atelierComboBox.TabIndex = 7;
2023-02-27 00:35:38 +04:00
//
// atelierLabel
//
2023-06-01 01:58:22 +04:00
atelierLabel.AutoSize = true;
atelierLabel.Font = new Font("Segoe UI", 14.25F, FontStyle.Regular, GraphicsUnit.Point);
atelierLabel.Location = new Point(12, 18);
atelierLabel.Name = "atelierLabel";
atelierLabel.Size = new Size(71, 25);
atelierLabel.TabIndex = 6;
atelierLabel.Text = "Atelier:";
2023-02-27 00:35:38 +04:00
//
// dressComboBox
//
2023-06-01 01:58:22 +04:00
dressComboBox.DropDownStyle = ComboBoxStyle.DropDownList;
dressComboBox.FormattingEnabled = true;
dressComboBox.Location = new Point(114, 69);
dressComboBox.Name = "dressComboBox";
dressComboBox.Size = new Size(320, 23);
dressComboBox.TabIndex = 9;
2023-02-27 00:35:38 +04:00
//
// dressLabel
//
2023-06-01 01:58:22 +04:00
dressLabel.AutoSize = true;
dressLabel.Font = new Font("Segoe UI", 14.25F, FontStyle.Regular, GraphicsUnit.Point);
dressLabel.Location = new Point(12, 66);
dressLabel.Name = "dressLabel";
dressLabel.Size = new Size(82, 25);
dressLabel.TabIndex = 8;
dressLabel.Text = "Product:";
2023-02-27 00:35:38 +04:00
//
// quantityTextBox
//
2023-06-01 01:58:22 +04:00
quantityTextBox.Location = new Point(114, 113);
quantityTextBox.Name = "quantityTextBox";
quantityTextBox.Size = new Size(320, 23);
quantityTextBox.TabIndex = 11;
2023-02-27 00:35:38 +04:00
//
// quantityLabel
//
2023-06-01 01:58:22 +04:00
quantityLabel.AutoSize = true;
quantityLabel.Font = new Font("Segoe UI", 14.25F, FontStyle.Regular, GraphicsUnit.Point);
quantityLabel.Location = new Point(12, 111);
quantityLabel.Name = "quantityLabel";
quantityLabel.Size = new Size(88, 25);
quantityLabel.TabIndex = 10;
quantityLabel.Text = "Quantity:";
2023-02-27 00:35:38 +04:00
//
// ButtonCancel
//
2023-06-01 01:58:22 +04:00
ButtonCancel.Location = new Point(336, 177);
ButtonCancel.Name = "ButtonCancel";
ButtonCancel.Size = new Size(100, 32);
ButtonCancel.TabIndex = 13;
ButtonCancel.Text = "Cancel";
ButtonCancel.UseVisualStyleBackColor = true;
ButtonCancel.Click += ButtonCancel_Click;
2023-02-27 00:35:38 +04:00
//
// ButtonSave
//
2023-06-01 01:58:22 +04:00
ButtonSave.Location = new Point(222, 177);
ButtonSave.Name = "ButtonSave";
ButtonSave.Size = new Size(100, 32);
ButtonSave.TabIndex = 12;
ButtonSave.Text = "Save";
ButtonSave.UseVisualStyleBackColor = true;
ButtonSave.Click += ButtonSave_Click;
2023-02-27 00:35:38 +04:00
//
// FormAtelierRestocking
//
2023-06-01 01:58:22 +04:00
AutoScaleDimensions = new SizeF(7F, 15F);
AutoScaleMode = AutoScaleMode.Font;
ClientSize = new Size(448, 221);
Controls.Add(ButtonCancel);
Controls.Add(ButtonSave);
Controls.Add(quantityTextBox);
Controls.Add(quantityLabel);
Controls.Add(dressComboBox);
Controls.Add(dressLabel);
Controls.Add(atelierComboBox);
Controls.Add(atelierLabel);
Name = "FormAtelierRestocking";
Text = "Atelier restocking";
Load += FormAtelierRestocking_Load;
ResumeLayout(false);
PerformLayout();
2023-02-27 00:35:38 +04:00
}
#endregion
private ComboBox atelierComboBox;
private Label atelierLabel;
private ComboBox dressComboBox;
private Label dressLabel;
private TextBox quantityTextBox;
private Label quantityLabel;
private Button ButtonCancel;
private Button ButtonSave;
}
}