PIbd-23-Nasyrov-A.G.-Flower.../ProjectFlowerShop/SupplyForm.Designer.cs

141 lines
4.8 KiB
C#

namespace ProjectFlowerShop
{
partial class SupplyForm
{
/// <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()
{
buttonSave = new Button();
buttonCancel = new Button();
labelShop = new Label();
labelFlower = new Label();
labelNumber = new Label();
comboBoxShop = new ComboBox();
comboBoxFlower = new ComboBox();
textBoxNumber = new TextBox();
SuspendLayout();
//
// buttonSave
//
buttonSave.Location = new Point(195, 186);
buttonSave.Name = "buttonSave";
buttonSave.Size = new Size(111, 29);
buttonSave.TabIndex = 0;
buttonSave.Text = "Сохранить";
buttonSave.UseVisualStyleBackColor = true;
buttonSave.Click += buttonSave_Click;
//
// buttonCancel
//
buttonCancel.Location = new Point(312, 186);
buttonCancel.Name = "buttonCancel";
buttonCancel.Size = new Size(108, 29);
buttonCancel.TabIndex = 1;
buttonCancel.Text = "Отмена";
buttonCancel.UseVisualStyleBackColor = true;
buttonCancel.Click += buttonCancel_Click;
//
// labelShop
//
labelShop.AutoSize = true;
labelShop.Location = new Point(12, 13);
labelShop.Name = "labelShop";
labelShop.Size = new Size(69, 20);
labelShop.TabIndex = 2;
labelShop.Text = "Магазин";
//
// labelFlower
//
labelFlower.AutoSize = true;
labelFlower.Location = new Point(12, 67);
labelFlower.Name = "labelFlower";
labelFlower.Size = new Size(53, 20);
labelFlower.TabIndex = 3;
labelFlower.Text = "Цветы";
//
// labelNumber
//
labelNumber.AutoSize = true;
labelNumber.Location = new Point(12, 121);
labelNumber.Name = "labelNumber";
labelNumber.Size = new Size(90, 20);
labelNumber.TabIndex = 4;
labelNumber.Text = "Количество";
//
// comboBoxShop
//
comboBoxShop.FormattingEnabled = true;
comboBoxShop.Location = new Point(12, 36);
comboBoxShop.Name = "comboBoxShop";
comboBoxShop.Size = new Size(294, 28);
comboBoxShop.TabIndex = 5;
//
// comboBoxFlower
//
comboBoxFlower.FormattingEnabled = true;
comboBoxFlower.Location = new Point(12, 90);
comboBoxFlower.Name = "comboBoxFlower";
comboBoxFlower.Size = new Size(294, 28);
comboBoxFlower.TabIndex = 6;
//
// textBoxNumber
//
textBoxNumber.Location = new Point(12, 144);
textBoxNumber.Name = "textBoxNumber";
textBoxNumber.Size = new Size(151, 27);
textBoxNumber.TabIndex = 7;
//
// SupplyForm
//
AutoScaleDimensions = new SizeF(8F, 20F);
AutoScaleMode = AutoScaleMode.Font;
ClientSize = new Size(430, 227);
Controls.Add(textBoxNumber);
Controls.Add(comboBoxFlower);
Controls.Add(comboBoxShop);
Controls.Add(labelNumber);
Controls.Add(labelFlower);
Controls.Add(labelShop);
Controls.Add(buttonCancel);
Controls.Add(buttonSave);
Name = "SupplyForm";
Text = "SupplyForm";
ResumeLayout(false);
PerformLayout();
}
#endregion
private Button buttonSave;
private Button buttonCancel;
private Label labelShop;
private Label labelFlower;
private Label labelNumber;
private ComboBox comboBoxShop;
private ComboBox comboBoxFlower;
private TextBox textBoxNumber;
}
}