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() { labelComponentName = new Label(); labelCost = new Label(); textBoxComponentName = new TextBox(); textBoxComponentCost = new TextBox(); buttonSaveComponent = new Button(); buttonCancel = new Button(); SuspendLayout(); // // labelComponentName // labelComponentName.AutoSize = true; labelComponentName.Font = new Font("Candara", 12F); labelComponentName.Location = new Point(20, 29); labelComponentName.Margin = new Padding(4, 0, 4, 0); labelComponentName.Name = "labelComponentName"; labelComponentName.Size = new Size(93, 24); labelComponentName.TabIndex = 0; labelComponentName.Text = "Название"; // // labelCost // labelCost.AutoSize = true; labelCost.Font = new Font("Candara", 12F); labelCost.Location = new Point(29, 111); labelCost.Margin = new Padding(4, 0, 4, 0); labelCost.Name = "labelCost"; labelCost.Size = new Size(53, 24); labelCost.TabIndex = 1; labelCost.Text = "Цена"; // // textBoxComponentName // textBoxComponentName.Anchor = AnchorStyles.Top | AnchorStyles.Right; textBoxComponentName.Location = new Point(134, 21); textBoxComponentName.Name = "textBoxComponentName"; textBoxComponentName.Size = new Size(355, 32); textBoxComponentName.TabIndex = 2; // // textBoxComponentCost // textBoxComponentCost.Anchor = AnchorStyles.Top | AnchorStyles.Right; textBoxComponentCost.Location = new Point(134, 103); textBoxComponentCost.Name = "textBoxComponentCost"; textBoxComponentCost.Size = new Size(355, 32); textBoxComponentCost.TabIndex = 3; // // buttonSaveComponent // buttonSaveComponent.Anchor = AnchorStyles.Bottom; buttonSaveComponent.Location = new Point(134, 161); buttonSaveComponent.Name = "buttonSaveComponent"; buttonSaveComponent.Size = new Size(116, 39); buttonSaveComponent.TabIndex = 4; buttonSaveComponent.Text = "Сохранить"; buttonSaveComponent.UseVisualStyleBackColor = true; buttonSaveComponent.Click += buttonSaveComponent_Click; // // buttonCancel // buttonCancel.Anchor = AnchorStyles.Bottom; buttonCancel.Location = new Point(373, 161); buttonCancel.Name = "buttonCancel"; buttonCancel.Size = new Size(116, 39); buttonCancel.TabIndex = 5; buttonCancel.Text = "Отмена"; buttonCancel.UseVisualStyleBackColor = true; buttonCancel.Click += buttonCancel_Click; // // FormComponent // AutoScaleDimensions = new SizeF(11F, 24F); AutoScaleMode = AutoScaleMode.Font; ClientSize = new Size(515, 230); Controls.Add(buttonCancel); Controls.Add(buttonSaveComponent); Controls.Add(textBoxComponentCost); Controls.Add(textBoxComponentName); Controls.Add(labelCost); Controls.Add(labelComponentName); Font = new Font("Candara", 12F, FontStyle.Regular, GraphicsUnit.Point, 204); Margin = new Padding(4); Name = "FormComponent"; Text = "Компонент"; Load += FormComponents_Load; ResumeLayout(false); PerformLayout(); } #endregion private Label labelComponentName; private Label labelCost; private TextBox textBoxComponentName; private TextBox textBoxComponentCost; private Button buttonSaveComponent; private Button buttonCancel; } }