namespace SushiBarView { partial class FormSellSushi { /// /// 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.labelSushi = new System.Windows.Forms.Label(); this.comboBoxSushi = 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(); // // labelSushi // this.labelSushi.AutoSize = true; this.labelSushi.Location = new System.Drawing.Point(12, 14); this.labelSushi.Name = "labelSushi"; this.labelSushi.Size = new System.Drawing.Size(75, 20); this.labelSushi.TabIndex = 0; this.labelSushi.Text = "Суши: "; // // comboBoxSushi // this.comboBoxSushi.FormattingEnabled = true; this.comboBoxSushi.Location = new System.Drawing.Point(115, 11); this.comboBoxSushi.Name = "comboBoxSushi"; this.comboBoxSushi.Size = new System.Drawing.Size(239, 28); this.comboBoxSushi.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); // // FormSellSushi // 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.comboBoxSushi); this.Controls.Add(this.labelSushi); this.Name = "FormSellSushi"; this.Text = "Продажа суши"; this.Load += new System.EventHandler(this.FormSellingSushi_Load); this.ResumeLayout(false); this.PerformLayout(); } #endregion private Label labelSushi; private ComboBox comboBoxSushi; private Label labelCount; private TextBox textBoxCount; private Button buttonSell; private Button buttonCancel; } }