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() { label1 = new Label(); label2 = new Label(); textBoxName = new TextBox(); textBoxCost = new TextBox(); buttonCreate = new Button(); buttonCancel = new Button(); SuspendLayout(); // // label1 // label1.AutoSize = true; label1.Location = new Point(90, 63); label1.Name = "label1"; label1.Size = new Size(94, 25); label1.TabIndex = 0; label1.Text = "Название:"; // // label2 // label2.AutoSize = true; label2.Location = new Point(127, 120); label2.Name = "label2"; label2.Size = new Size(57, 25); label2.TabIndex = 1; label2.Text = "Цена:"; // // textBoxName // textBoxName.Location = new Point(190, 63); textBoxName.Name = "textBoxName"; textBoxName.Size = new Size(285, 31); textBoxName.TabIndex = 2; // // textBoxCost // textBoxCost.Location = new Point(190, 120); textBoxCost.Name = "textBoxCost"; textBoxCost.Size = new Size(150, 31); textBoxCost.TabIndex = 3; // // buttonCreate // buttonCreate.Location = new Point(501, 162); buttonCreate.Name = "buttonCreate"; buttonCreate.Size = new Size(112, 58); buttonCreate.TabIndex = 4; buttonCreate.Text = "Создать"; buttonCreate.UseVisualStyleBackColor = true; buttonCreate.Click += ButtonSave_Click; // // buttonCancel // buttonCancel.Location = new Point(636, 162); buttonCancel.Name = "buttonCancel"; buttonCancel.Size = new Size(112, 58); buttonCancel.TabIndex = 5; buttonCancel.Text = "Отмена"; buttonCancel.UseVisualStyleBackColor = true; buttonCancel.Click += ButtonCancel_Click; // // FormComponent // AutoScaleDimensions = new SizeF(10F, 25F); AutoScaleMode = AutoScaleMode.Font; ClientSize = new Size(803, 243); Controls.Add(buttonCancel); Controls.Add(buttonCreate); Controls.Add(textBoxCost); Controls.Add(textBoxName); Controls.Add(label2); Controls.Add(label1); Name = "FormComponent"; Text = "Компонент"; Load += FormComponent_Load; ResumeLayout(false); PerformLayout(); } #endregion private Label label1; private Label label2; private TextBox textBoxName; private TextBox textBoxCost; private Button buttonCreate; private Button buttonCancel; } }