namespace TypographyView { 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() { buttonSave = new Button(); buttonCancel = new Button(); labelComponentName = new Label(); labelCostComponent = new Label(); textBoxName = new TextBox(); textBoxCost = new TextBox(); SuspendLayout(); // // buttonSave // buttonSave.Location = new Point(205, 117); buttonSave.Name = "buttonSave"; buttonSave.Size = new Size(94, 29); buttonSave.TabIndex = 0; buttonSave.Text = "Сохранить"; buttonSave.UseVisualStyleBackColor = true; buttonSave.Click += ButtonSave_Click; // // buttonCancel // buttonCancel.Location = new Point(330, 117); buttonCancel.Name = "buttonCancel"; buttonCancel.Size = new Size(94, 29); buttonCancel.TabIndex = 1; buttonCancel.Text = "Отмена"; buttonCancel.UseVisualStyleBackColor = true; buttonCancel.Click += ButtonCancel_Click; // // labelComponentName // labelComponentName.AutoSize = true; labelComponentName.Location = new Point(12, 30); labelComponentName.Name = "labelComponentName"; labelComponentName.Size = new Size(80, 20); labelComponentName.TabIndex = 2; labelComponentName.Text = "Название:"; // // labelCostComponent // labelCostComponent.AutoSize = true; labelCostComponent.Location = new Point(12, 70); labelCostComponent.Name = "labelCostComponent"; labelCostComponent.Size = new Size(48, 20); labelCostComponent.TabIndex = 3; labelCostComponent.Text = "Цена:"; // // textBoxName // textBoxName.Location = new Point(109, 27); textBoxName.Name = "textBoxName"; textBoxName.Size = new Size(315, 27); textBoxName.TabIndex = 4; // // textBoxCost // textBoxCost.Location = new Point(109, 67); textBoxCost.Name = "textBoxCost"; textBoxCost.Size = new Size(125, 27); textBoxCost.TabIndex = 5; // // FormComponent // AutoScaleDimensions = new SizeF(8F, 20F); AutoScaleMode = AutoScaleMode.Font; ClientSize = new Size(455, 158); Controls.Add(textBoxCost); Controls.Add(textBoxName); Controls.Add(labelCostComponent); Controls.Add(labelComponentName); Controls.Add(buttonCancel); Controls.Add(buttonSave); Name = "FormComponent"; Text = "Компонент"; Load += FormComponent_Load; ResumeLayout(false); PerformLayout(); } #endregion private Button buttonSave; private Button buttonCancel; private Label labelComponentName; private Label labelCostComponent; private TextBox textBoxName; private TextBox textBoxCost; } }