namespace SushiBarView { partial class FormComponent { /// /// 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.ButtonSave = new System.Windows.Forms.Button(); this.ButtonCancel = new System.Windows.Forms.Button(); this.labelName = new System.Windows.Forms.Label(); this.labelCost = new System.Windows.Forms.Label(); this.textBoxName = new System.Windows.Forms.TextBox(); this.textBoxCost = new System.Windows.Forms.TextBox(); this.SuspendLayout(); // // ButtonSave // this.ButtonSave.Location = new System.Drawing.Point(174, 99); this.ButtonSave.Name = "ButtonSave"; this.ButtonSave.Size = new System.Drawing.Size(87, 26); this.ButtonSave.TabIndex = 0; this.ButtonSave.Text = "Сохранить"; this.ButtonSave.UseVisualStyleBackColor = true; this.ButtonSave.Click += new System.EventHandler(this.ButtonSave_Click); // // ButtonCancel // this.ButtonCancel.Location = new System.Drawing.Point(267, 99); this.ButtonCancel.Name = "ButtonCancel"; this.ButtonCancel.Size = new System.Drawing.Size(87, 26); this.ButtonCancel.TabIndex = 1; this.ButtonCancel.Text = "Отмена"; this.ButtonCancel.UseVisualStyleBackColor = true; // // labelName // this.labelName.AutoSize = true; this.labelName.Location = new System.Drawing.Point(12, 24); this.labelName.Name = "labelName"; this.labelName.Size = new System.Drawing.Size(59, 15); this.labelName.TabIndex = 2; this.labelName.Text = "Название"; // // labelCost // this.labelCost.AutoSize = true; this.labelCost.Location = new System.Drawing.Point(12, 65); this.labelCost.Name = "labelCost"; this.labelCost.Size = new System.Drawing.Size(35, 15); this.labelCost.TabIndex = 3; this.labelCost.Text = "Цена"; // // textBoxName // this.textBoxName.Location = new System.Drawing.Point(83, 21); this.textBoxName.Name = "textBoxName"; this.textBoxName.Size = new System.Drawing.Size(262, 23); this.textBoxName.TabIndex = 4; // // textBoxCost // this.textBoxCost.Location = new System.Drawing.Point(83, 57); this.textBoxCost.Name = "textBoxCost"; this.textBoxCost.Size = new System.Drawing.Size(262, 23); this.textBoxCost.TabIndex = 5; // // FormComponent // this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(354, 131); this.Controls.Add(this.textBoxCost); this.Controls.Add(this.textBoxName); this.Controls.Add(this.labelCost); this.Controls.Add(this.labelName); this.Controls.Add(this.ButtonCancel); this.Controls.Add(this.ButtonSave); this.Name = "FormComponent"; this.Text = "Компонент"; this.Load += new System.EventHandler(this.FormComponent_Load); this.ResumeLayout(false); this.PerformLayout(); } #endregion private Button ButtonSave; private Button ButtonCancel; private Label labelName; private Label labelCost; private TextBox textBoxName; private TextBox textBoxCost; } }