namespace PizzeriaView { partial class FormSellPizza { /// /// Required designer variable. /// private System.ComponentModel.IContainer components = null; /// /// Clean up any resources being used. /// /// true if managed resources should be disposed; otherwise, false. protected override void Dispose(bool disposing) { if (disposing && (components != null)) { components.Dispose(); } base.Dispose(disposing); } #region Windows Form Designer generated code /// /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// private void InitializeComponent() { this.labelPizza = new System.Windows.Forms.Label(); this.comboBoxPizza = new System.Windows.Forms.ComboBox(); this.labelCount = new System.Windows.Forms.Label(); this.textBoxCount = new System.Windows.Forms.TextBox(); this.buttonSell = new System.Windows.Forms.Button(); this.buttonCancel = new System.Windows.Forms.Button(); this.SuspendLayout(); // // labelPizza // this.labelPizza.AutoSize = true; this.labelPizza.Location = new System.Drawing.Point(12, 14); this.labelPizza.Name = "labelPizza"; this.labelPizza.Size = new System.Drawing.Size(75, 20); this.labelPizza.TabIndex = 0; this.labelPizza.Text = "Пицца: "; // // comboBoxPizza // this.comboBoxPizza.FormattingEnabled = true; this.comboBoxPizza.Location = new System.Drawing.Point(115, 11); this.comboBoxPizza.Name = "comboBoxPizza"; this.comboBoxPizza.Size = new System.Drawing.Size(239, 28); this.comboBoxPizza.TabIndex = 1; // // labelCount // this.labelCount.AutoSize = true; this.labelCount.Location = new System.Drawing.Point(12, 55); this.labelCount.Name = "labelCount"; this.labelCount.Size = new System.Drawing.Size(97, 20); this.labelCount.TabIndex = 2; this.labelCount.Text = "Количество: "; // // textBoxCount // this.textBoxCount.Location = new System.Drawing.Point(115, 52); this.textBoxCount.Name = "textBoxCount"; this.textBoxCount.Size = new System.Drawing.Size(239, 27); this.textBoxCount.TabIndex = 3; // // buttonSell // this.buttonSell.Location = new System.Drawing.Point(128, 99); this.buttonSell.Name = "buttonSell"; this.buttonSell.Size = new System.Drawing.Size(94, 29); this.buttonSell.TabIndex = 4; this.buttonSell.Text = "Продать"; this.buttonSell.UseVisualStyleBackColor = true; this.buttonSell.Click += new System.EventHandler(this.ButtonSell_Click); // // buttonCancel // this.buttonCancel.Location = new System.Drawing.Point(242, 99); this.buttonCancel.Name = "buttonCancel"; this.buttonCancel.Size = new System.Drawing.Size(94, 29); this.buttonCancel.TabIndex = 5; this.buttonCancel.Text = "Отмена"; this.buttonCancel.UseVisualStyleBackColor = true; this.buttonCancel.Click += new System.EventHandler(this.ButtonCancel_Click); // // FormSellPizza // this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 20F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(366, 140); this.Controls.Add(this.buttonCancel); this.Controls.Add(this.buttonSell); this.Controls.Add(this.textBoxCount); this.Controls.Add(this.labelCount); this.Controls.Add(this.comboBoxPizza); this.Controls.Add(this.labelPizza); this.Name = "FormSellPizza"; this.Text = "Продажа пиццы"; this.Load += new System.EventHandler(this.FormSellingPizza_Load); this.ResumeLayout(false); this.PerformLayout(); } #endregion private Label labelPizza; private ComboBox comboBoxPizza; private Label labelCount; private TextBox textBoxCount; private Button buttonSell; private Button buttonCancel; } }