namespace DinerView { partial class FormFood { /// /// 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() { labelName = new Label(); labelPrice = new Label(); textBoxName = new TextBox(); textBoxPrice = new TextBox(); buttonCancel = new Button(); buttonSave = new Button(); SuspendLayout(); // // labelName // labelName.AutoSize = true; labelName.Location = new Point(12, 9); labelName.Name = "labelName"; labelName.Size = new Size(62, 15); labelName.TabIndex = 0; labelName.Text = "Название:"; // // labelPrice // labelPrice.AutoSize = true; labelPrice.Location = new Point(12, 38); labelPrice.Name = "labelPrice"; labelPrice.Size = new Size(38, 15); labelPrice.TabIndex = 1; labelPrice.Text = "Цена:"; // // textBoxName // textBoxName.Location = new Point(77, 6); textBoxName.Name = "textBoxName"; textBoxName.Size = new Size(305, 23); textBoxName.TabIndex = 2; // // textBoxPrice // textBoxPrice.Location = new Point(77, 38); textBoxPrice.Name = "textBoxPrice"; textBoxPrice.Size = new Size(305, 23); textBoxPrice.TabIndex = 3; // // buttonCancel // buttonCancel.Location = new Point(307, 67); buttonCancel.Name = "buttonCancel"; buttonCancel.Size = new Size(75, 23); buttonCancel.TabIndex = 4; buttonCancel.Text = "Отмена"; buttonCancel.UseVisualStyleBackColor = true; buttonCancel.Click += buttonCancel_Click; // // buttonSave // buttonSave.Location = new Point(226, 67); buttonSave.Name = "buttonSave"; buttonSave.Size = new Size(75, 23); buttonSave.TabIndex = 5; buttonSave.Text = "Сохранить"; buttonSave.UseVisualStyleBackColor = true; buttonSave.Click += buttonSave_Click; // // FormFood // AutoScaleDimensions = new SizeF(7F, 15F); AutoScaleMode = AutoScaleMode.Font; ClientSize = new Size(394, 101); Controls.Add(buttonSave); Controls.Add(buttonCancel); Controls.Add(textBoxPrice); Controls.Add(textBoxName); Controls.Add(labelPrice); Controls.Add(labelName); Name = "FormFood"; Text = "Food"; Load += FormComponent_Load; ResumeLayout(false); PerformLayout(); } #endregion private Label labelName; private Label labelPrice; private TextBox textBoxName; private TextBox textBoxPrice; private Button buttonCancel; private Button buttonSave; } }