PIbd-23-Nasyrov-A.G.-Flower.../ProjectFlowerShop/FormFlowerComponent.Designer.cs
2024-02-27 13:04:35 +03:00

119 lines
4.2 KiB
C#

namespace ProjectFlowerShop
{
partial class FormFlowerComponent
{
/// <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()
{
labelComponent = new Label();
labelNumber = new Label();
comboBoxComponent = new ComboBox();
textBoxNumber = new TextBox();
buttonSave = new Button();
buttonCancel = new Button();
SuspendLayout();
//
// labelComponent
//
labelComponent.AutoSize = true;
labelComponent.Location = new Point(32, 15);
labelComponent.Name = "labelComponent";
labelComponent.Size = new Size(88, 20);
labelComponent.TabIndex = 0;
labelComponent.Text = "Компонент";
//
// labelNumber
//
labelNumber.AutoSize = true;
labelNumber.Location = new Point(32, 56);
labelNumber.Name = "labelNumber";
labelNumber.Size = new Size(90, 20);
labelNumber.TabIndex = 1;
labelNumber.Text = "Количество";
//
// comboBoxComponent
//
comboBoxComponent.FormattingEnabled = true;
comboBoxComponent.Location = new Point(220, 12);
comboBoxComponent.Name = "comboBoxComponent";
comboBoxComponent.Size = new Size(362, 28);
comboBoxComponent.TabIndex = 2;
//
// textBoxNumber
//
textBoxNumber.Location = new Point(220, 53);
textBoxNumber.Name = "textBoxNumber";
textBoxNumber.Size = new Size(362, 27);
textBoxNumber.TabIndex = 3;
//
// buttonSave
//
buttonSave.Location = new Point(338, 191);
buttonSave.Name = "buttonSave";
buttonSave.Size = new Size(119, 29);
buttonSave.TabIndex = 4;
buttonSave.Text = "Сохранить";
buttonSave.UseVisualStyleBackColor = true;
buttonSave.Click += buttonSave_Click;
//
// buttonCancel
//
buttonCancel.Location = new Point(463, 191);
buttonCancel.Name = "buttonCancel";
buttonCancel.Size = new Size(119, 29);
buttonCancel.TabIndex = 5;
buttonCancel.Text = "Отмена";
buttonCancel.UseVisualStyleBackColor = true;
buttonCancel.Click += buttonCancel_Click;
//
// FormProductComponent
//
AutoScaleDimensions = new SizeF(8F, 20F);
AutoScaleMode = AutoScaleMode.Font;
ClientSize = new Size(594, 232);
Controls.Add(buttonCancel);
Controls.Add(buttonSave);
Controls.Add(textBoxNumber);
Controls.Add(comboBoxComponent);
Controls.Add(labelNumber);
Controls.Add(labelComponent);
Name = "FormProductComponent";
Text = "FormProductComponent";
Load += FormProductComponent_Load;
ResumeLayout(false);
PerformLayout();
}
#endregion
private Label labelComponent;
private Label labelNumber;
private ComboBox comboBoxComponent;
private TextBox textBoxNumber;
private Button buttonSave;
private Button buttonCancel;
}
}