PIbd-21_Rodionov_I.A._IceCr.../IceCreamShop/IceCreamShopView/FormIceCreamSale.Designer.cs

127 lines
4.6 KiB
C#

namespace IceCreamShopView
{
partial class FormIceCreamSale
{
/// <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()
{
buttonCancel = new Button();
buttonSale = new Button();
textBoxCount = new TextBox();
labelCount = new Label();
comboBoxIceCream = new ComboBox();
labelIceCream = new Label();
SuspendLayout();
//
// buttonCancel
//
buttonCancel.Location = new Point(253, 83);
buttonCancel.Margin = new Padding(4, 3, 4, 3);
buttonCancel.Name = "buttonCancel";
buttonCancel.Size = new Size(88, 27);
buttonCancel.TabIndex = 17;
buttonCancel.Text = "Отмена";
buttonCancel.UseVisualStyleBackColor = true;
buttonCancel.Click += ButtonCancel_Click;
//
// buttonSale
//
buttonSale.Location = new Point(159, 83);
buttonSale.Margin = new Padding(4, 3, 4, 3);
buttonSale.Name = "buttonSale";
buttonSale.Size = new Size(88, 27);
buttonSale.TabIndex = 16;
buttonSale.Text = "Продать";
buttonSale.UseVisualStyleBackColor = true;
buttonSale.Click += ButtonSale_Click;
//
// textBoxCount
//
textBoxCount.Location = new Point(101, 51);
textBoxCount.Margin = new Padding(4, 3, 4, 3);
textBoxCount.Name = "textBoxCount";
textBoxCount.Size = new Size(252, 23);
textBoxCount.TabIndex = 15;
//
// labelCount
//
labelCount.AutoSize = true;
labelCount.Location = new Point(13, 54);
labelCount.Margin = new Padding(4, 0, 4, 0);
labelCount.Name = "labelCount";
labelCount.Size = new Size(78, 15);
labelCount.TabIndex = 14;
labelCount.Text = "Количество :";
//
// comboBoxIceCream
//
comboBoxIceCream.DropDownStyle = ComboBoxStyle.DropDownList;
comboBoxIceCream.FormattingEnabled = true;
comboBoxIceCream.Location = new Point(101, 15);
comboBoxIceCream.Margin = new Padding(4, 3, 4, 3);
comboBoxIceCream.Name = "comboBoxIceCream";
comboBoxIceCream.Size = new Size(252, 23);
comboBoxIceCream.TabIndex = 13;
//
// labelIceCream
//
labelIceCream.AutoSize = true;
labelIceCream.Location = new Point(13, 19);
labelIceCream.Margin = new Padding(4, 0, 4, 0);
labelIceCream.Name = "labelIceCream";
labelIceCream.Size = new Size(80, 15);
labelIceCream.TabIndex = 12;
labelIceCream.Text = "Мороженое :";
//
// FormIceCreamSale
//
AutoScaleDimensions = new SizeF(7F, 15F);
AutoScaleMode = AutoScaleMode.Font;
ClientSize = new Size(373, 123);
Controls.Add(buttonCancel);
Controls.Add(buttonSale);
Controls.Add(textBoxCount);
Controls.Add(labelCount);
Controls.Add(comboBoxIceCream);
Controls.Add(labelIceCream);
Name = "FormIceCreamSale";
StartPosition = FormStartPosition.CenterScreen;
Text = "Продажа мороженого";
Load += FormIceCreamSale_Load;
ResumeLayout(false);
PerformLayout();
}
#endregion
private Button buttonCancel;
private Button buttonSale;
private TextBox textBoxCount;
private Label labelCount;
private ComboBox comboBoxIceCream;
private Label labelIceCream;
}
}