120 lines
4.9 KiB
C#
120 lines
4.9 KiB
C#
namespace IceCreamShopView
|
||
{
|
||
partial class FormSellIceCream
|
||
{
|
||
/// <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.ButtonCancel = new System.Windows.Forms.Button();
|
||
this.SaveButton = new System.Windows.Forms.Button();
|
||
this.QuantityTextBox = new System.Windows.Forms.TextBox();
|
||
this.IceCreamСomboBox = new System.Windows.Forms.ComboBox();
|
||
this.QuantityLabel = new System.Windows.Forms.Label();
|
||
this.IceCreamLabel = new System.Windows.Forms.Label();
|
||
this.SuspendLayout();
|
||
//
|
||
// ButtonCancel
|
||
//
|
||
this.ButtonCancel.Location = new System.Drawing.Point(169, 97);
|
||
this.ButtonCancel.Name = "ButtonCancel";
|
||
this.ButtonCancel.Size = new System.Drawing.Size(97, 29);
|
||
this.ButtonCancel.TabIndex = 11;
|
||
this.ButtonCancel.Text = "Отмена";
|
||
this.ButtonCancel.UseVisualStyleBackColor = true;
|
||
this.ButtonCancel.Click += new System.EventHandler(this.ButtonCancel_Click);
|
||
//
|
||
// SaveButton
|
||
//
|
||
this.SaveButton.Location = new System.Drawing.Point(66, 97);
|
||
this.SaveButton.Name = "SaveButton";
|
||
this.SaveButton.Size = new System.Drawing.Size(97, 29);
|
||
this.SaveButton.TabIndex = 10;
|
||
this.SaveButton.Text = "Сохранить";
|
||
this.SaveButton.UseVisualStyleBackColor = true;
|
||
this.SaveButton.Click += new System.EventHandler(this.SaveButton_Click);
|
||
//
|
||
// QuantityTextBox
|
||
//
|
||
this.QuantityTextBox.Location = new System.Drawing.Point(82, 45);
|
||
this.QuantityTextBox.Name = "QuantityTextBox";
|
||
this.QuantityTextBox.Size = new System.Drawing.Size(184, 23);
|
||
this.QuantityTextBox.TabIndex = 9;
|
||
//
|
||
// IceCreamСomboBox
|
||
//
|
||
this.IceCreamСomboBox.FormattingEnabled = true;
|
||
this.IceCreamСomboBox.Location = new System.Drawing.Point(82, 12);
|
||
this.IceCreamСomboBox.Name = "IceCreamСomboBox";
|
||
this.IceCreamСomboBox.Size = new System.Drawing.Size(184, 23);
|
||
this.IceCreamСomboBox.TabIndex = 8;
|
||
//
|
||
// QuantityLabel
|
||
//
|
||
this.QuantityLabel.AutoSize = true;
|
||
this.QuantityLabel.Location = new System.Drawing.Point(6, 48);
|
||
this.QuantityLabel.Name = "QuantityLabel";
|
||
this.QuantityLabel.Size = new System.Drawing.Size(75, 15);
|
||
this.QuantityLabel.TabIndex = 7;
|
||
this.QuantityLabel.Text = "Количество:";
|
||
//
|
||
// IceCreamLabel
|
||
//
|
||
this.IceCreamLabel.AutoSize = true;
|
||
this.IceCreamLabel.Location = new System.Drawing.Point(6, 15);
|
||
this.IceCreamLabel.Name = "IceCreamLabel";
|
||
this.IceCreamLabel.Size = new System.Drawing.Size(74, 15);
|
||
this.IceCreamLabel.TabIndex = 6;
|
||
this.IceCreamLabel.Text = "Мороженое";
|
||
//
|
||
// FormSellIceCream
|
||
//
|
||
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
|
||
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
||
this.ClientSize = new System.Drawing.Size(278, 135);
|
||
this.Controls.Add(this.ButtonCancel);
|
||
this.Controls.Add(this.SaveButton);
|
||
this.Controls.Add(this.QuantityTextBox);
|
||
this.Controls.Add(this.IceCreamСomboBox);
|
||
this.Controls.Add(this.QuantityLabel);
|
||
this.Controls.Add(this.IceCreamLabel);
|
||
this.Name = "FormSellIceCream";
|
||
this.Text = "Продать мороженое";
|
||
this.Load += new System.EventHandler(this.FormSellIceCream_Load);
|
||
this.ResumeLayout(false);
|
||
this.PerformLayout();
|
||
|
||
}
|
||
|
||
#endregion
|
||
|
||
private Button ButtonCancel;
|
||
private Button SaveButton;
|
||
private TextBox QuantityTextBox;
|
||
private ComboBox IceCreamСomboBox;
|
||
private Label QuantityLabel;
|
||
private Label IceCreamLabel;
|
||
}
|
||
} |