namespace AbstractShopView { 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.buttonCancel = new System.Windows.Forms.Button(); this.buttonSave = new System.Windows.Forms.Button(); this.textBoxName = new System.Windows.Forms.TextBox(); this.labelName = new System.Windows.Forms.Label(); this.textBoxCost = new System.Windows.Forms.TextBox(); this.labelCost = new System.Windows.Forms.Label(); this.SuspendLayout(); // // buttonCancel // this.buttonCancel.Location = new System.Drawing.Point(257, 71); this.buttonCancel.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3); this.buttonCancel.Name = "buttonCancel"; this.buttonCancel.Size = new System.Drawing.Size(88, 27); this.buttonCancel.TabIndex = 5; this.buttonCancel.Text = "Отмена"; this.buttonCancel.UseVisualStyleBackColor = true; this.buttonCancel.Click += new System.EventHandler(this.ButtonCancel_Click); // // buttonSave // this.buttonSave.Location = new System.Drawing.Point(162, 71); this.buttonSave.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3); this.buttonSave.Name = "buttonSave"; this.buttonSave.Size = new System.Drawing.Size(88, 27); this.buttonSave.TabIndex = 4; this.buttonSave.Text = "Сохранить"; this.buttonSave.UseVisualStyleBackColor = true; this.buttonSave.Click += new System.EventHandler(this.ButtonSave_Click); // // textBoxName // this.textBoxName.Location = new System.Drawing.Point(91, 7); this.textBoxName.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3); this.textBoxName.Name = "textBoxName"; this.textBoxName.Size = new System.Drawing.Size(252, 23); this.textBoxName.TabIndex = 1; // // labelName // this.labelName.AutoSize = true; this.labelName.Location = new System.Drawing.Point(14, 10); this.labelName.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0); this.labelName.Name = "labelName"; this.labelName.Size = new System.Drawing.Size(62, 15); this.labelName.TabIndex = 0; this.labelName.Text = "Название:"; // // textBoxCost // this.textBoxCost.Location = new System.Drawing.Point(91, 36); this.textBoxCost.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3); this.textBoxCost.Name = "textBoxCost"; this.textBoxCost.Size = new System.Drawing.Size(129, 23); this.textBoxCost.TabIndex = 3; // // labelCost // this.labelCost.AutoSize = true; this.labelCost.Location = new System.Drawing.Point(14, 39); this.labelCost.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0); this.labelCost.Name = "labelCost"; this.labelCost.Size = new System.Drawing.Size(38, 15); this.labelCost.TabIndex = 2; this.labelCost.Text = "Цена:"; // // FormComponent // this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(360, 110); this.Controls.Add(this.textBoxCost); this.Controls.Add(this.labelCost); this.Controls.Add(this.buttonCancel); this.Controls.Add(this.buttonSave); this.Controls.Add(this.textBoxName); this.Controls.Add(this.labelName); this.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3); this.Name = "FormComponent"; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen; this.Text = "Компонент"; this.Load += new System.EventHandler(this.FormComponent_Load); this.ResumeLayout(false); this.PerformLayout(); } #endregion private System.Windows.Forms.Button buttonCancel; private System.Windows.Forms.Button buttonSave; private System.Windows.Forms.TextBox textBoxName; private System.Windows.Forms.Label labelName; private TextBox textBoxCost; private Label labelCost; } }