namespace ConfectioneryView { 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.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.ButtonSave = new System.Windows.Forms.Button(); this.ButtonCancel = new System.Windows.Forms.Button(); this.SuspendLayout(); // // labelName // this.labelName.AutoSize = true; this.labelName.Location = new System.Drawing.Point(54, 42); this.labelName.Name = "labelName"; this.labelName.Size = new System.Drawing.Size(80, 20); this.labelName.TabIndex = 0; this.labelName.Text = "Название:"; // // labelCost // this.labelCost.AutoSize = true; this.labelCost.Location = new System.Drawing.Point(54, 95); this.labelCost.Name = "labelCost"; this.labelCost.Size = new System.Drawing.Size(48, 20); this.labelCost.TabIndex = 1; this.labelCost.Text = "Цена:"; // // textBoxName // this.textBoxName.Location = new System.Drawing.Point(173, 39); this.textBoxName.Name = "textBoxName"; this.textBoxName.Size = new System.Drawing.Size(295, 27); this.textBoxName.TabIndex = 2; // // textBoxCost // this.textBoxCost.Location = new System.Drawing.Point(173, 95); this.textBoxCost.Name = "textBoxCost"; this.textBoxCost.Size = new System.Drawing.Size(160, 27); this.textBoxCost.TabIndex = 3; // // ButtonSave // this.ButtonSave.Location = new System.Drawing.Point(104, 158); this.ButtonSave.Name = "ButtonSave"; this.ButtonSave.Size = new System.Drawing.Size(94, 29); this.ButtonSave.TabIndex = 4; this.ButtonSave.Text = "Сохранить"; this.ButtonSave.UseVisualStyleBackColor = true; this.ButtonSave.Click += new System.EventHandler(this.ButtonSave_Click); // // ButtonCancel // this.ButtonCancel.Location = new System.Drawing.Point(315, 158); 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); // // FormComponent // this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 20F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(495, 232); this.Controls.Add(this.ButtonCancel); this.Controls.Add(this.ButtonSave); this.Controls.Add(this.textBoxCost); this.Controls.Add(this.textBoxName); this.Controls.Add(this.labelCost); this.Controls.Add(this.labelName); this.Name = "FormComponent"; this.Text = "FormComponent"; this.Load += new System.EventHandler(this.FormComponent_Load); this.ResumeLayout(false); this.PerformLayout(); } #endregion private Label labelName; private Label labelCost; private TextBox textBoxName; private TextBox textBoxCost; private Button ButtonSave; private Button ButtonCancel; } }