150 lines
6.5 KiB
C#
150 lines
6.5 KiB
C#
namespace FlowerShop
|
|
{
|
|
partial class FormShopSupply
|
|
{
|
|
/// <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.labelShop = new System.Windows.Forms.Label();
|
|
this.labelBouquet = new System.Windows.Forms.Label();
|
|
this.labelBouquetsCount = new System.Windows.Forms.Label();
|
|
this.comboBoxShop = new System.Windows.Forms.ComboBox();
|
|
this.comboBoxBouquet = new System.Windows.Forms.ComboBox();
|
|
this.textBoxCount = new System.Windows.Forms.TextBox();
|
|
this.buttonCancel = new System.Windows.Forms.Button();
|
|
this.buttonSave = new System.Windows.Forms.Button();
|
|
this.SuspendLayout();
|
|
//
|
|
// labelShop
|
|
//
|
|
this.labelShop.AutoSize = true;
|
|
this.labelShop.Location = new System.Drawing.Point(23, 14);
|
|
this.labelShop.Name = "labelShop";
|
|
this.labelShop.RightToLeft = System.Windows.Forms.RightToLeft.No;
|
|
this.labelShop.Size = new System.Drawing.Size(57, 15);
|
|
this.labelShop.TabIndex = 0;
|
|
this.labelShop.Text = "Магазин:";
|
|
//
|
|
// labelBouquet
|
|
//
|
|
this.labelBouquet.AutoSize = true;
|
|
this.labelBouquet.Location = new System.Drawing.Point(23, 54);
|
|
this.labelBouquet.Name = "labelBouquet";
|
|
this.labelBouquet.Size = new System.Drawing.Size(40, 15);
|
|
this.labelBouquet.TabIndex = 1;
|
|
this.labelBouquet.Text = "Букет:";
|
|
//
|
|
// labelBouquetsCount
|
|
//
|
|
this.labelBouquetsCount.AutoSize = true;
|
|
this.labelBouquetsCount.Location = new System.Drawing.Point(23, 92);
|
|
this.labelBouquetsCount.Name = "labelBouquetsCount";
|
|
this.labelBouquetsCount.Size = new System.Drawing.Size(75, 15);
|
|
this.labelBouquetsCount.TabIndex = 2;
|
|
this.labelBouquetsCount.Text = "Количество:";
|
|
//
|
|
// comboBoxShop
|
|
//
|
|
this.comboBoxShop.FormattingEnabled = true;
|
|
this.comboBoxShop.Location = new System.Drawing.Point(130, 14);
|
|
this.comboBoxShop.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
|
|
this.comboBoxShop.Name = "comboBoxShop";
|
|
this.comboBoxShop.Size = new System.Drawing.Size(220, 23);
|
|
this.comboBoxShop.TabIndex = 3;
|
|
//
|
|
// comboBoxBouquet
|
|
//
|
|
this.comboBoxBouquet.FormattingEnabled = true;
|
|
this.comboBoxBouquet.Location = new System.Drawing.Point(130, 52);
|
|
this.comboBoxBouquet.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
|
|
this.comboBoxBouquet.Name = "comboBoxBouquet";
|
|
this.comboBoxBouquet.Size = new System.Drawing.Size(220, 23);
|
|
this.comboBoxBouquet.TabIndex = 4;
|
|
//
|
|
// textBoxCount
|
|
//
|
|
this.textBoxCount.Location = new System.Drawing.Point(130, 89);
|
|
this.textBoxCount.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
|
|
this.textBoxCount.Name = "textBoxCount";
|
|
this.textBoxCount.Size = new System.Drawing.Size(110, 23);
|
|
this.textBoxCount.TabIndex = 5;
|
|
//
|
|
// buttonCancel
|
|
//
|
|
this.buttonCancel.Location = new System.Drawing.Point(288, 137);
|
|
this.buttonCancel.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
|
|
this.buttonCancel.Name = "buttonCancel";
|
|
this.buttonCancel.Size = new System.Drawing.Size(82, 34);
|
|
this.buttonCancel.TabIndex = 9;
|
|
this.buttonCancel.Text = "Отмена";
|
|
this.buttonCancel.UseVisualStyleBackColor = true;
|
|
this.buttonCancel.Click += new System.EventHandler(this.buttonCancel_Click);
|
|
//
|
|
// buttonSave
|
|
//
|
|
this.buttonSave.Location = new System.Drawing.Point(200, 137);
|
|
this.buttonSave.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
|
|
this.buttonSave.Name = "buttonSave";
|
|
this.buttonSave.Size = new System.Drawing.Size(82, 34);
|
|
this.buttonSave.TabIndex = 8;
|
|
this.buttonSave.Text = "Сохранить";
|
|
this.buttonSave.UseVisualStyleBackColor = true;
|
|
this.buttonSave.Click += new System.EventHandler(this.buttonSave_Click);
|
|
//
|
|
// FormShopSupply
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(382, 182);
|
|
this.Controls.Add(this.buttonCancel);
|
|
this.Controls.Add(this.buttonSave);
|
|
this.Controls.Add(this.textBoxCount);
|
|
this.Controls.Add(this.comboBoxBouquet);
|
|
this.Controls.Add(this.comboBoxShop);
|
|
this.Controls.Add(this.labelBouquetsCount);
|
|
this.Controls.Add(this.labelBouquet);
|
|
this.Controls.Add(this.labelShop);
|
|
this.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
|
|
this.Name = "FormShopSupply";
|
|
this.Text = "Пополнение магазина";
|
|
this.Load += new System.EventHandler(this.FormShopSupply_Load);
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private Label labelShop;
|
|
private Label labelBouquet;
|
|
private Label labelBouquetsCount;
|
|
private ComboBox comboBoxShop;
|
|
private ComboBox comboBoxBouquet;
|
|
private TextBox textBoxCount;
|
|
private Button buttonCancel;
|
|
private Button buttonSave;
|
|
}
|
|
} |