namespace viewmodel { partial class FormConstructionMaterial { /// /// 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(); label3 = new Label(); textBoxFoodName = new TextBox(); textBoxPrice = new TextBox(); textBoxDeskr = new TextBox(); buttonCancel = new Button(); buttonSave = new Button(); SuspendLayout(); // // label1 // label1.AutoSize = true; label1.Location = new Point(12, 9); label1.Name = "label1"; label1.Size = new Size(59, 15); label1.TabIndex = 0; label1.Text = "Название"; // // label2 // label2.AutoSize = true; label2.Location = new Point(12, 67); label2.Name = "label2"; label2.Size = new Size(72, 15); label2.TabIndex = 1; label2.Text = "Количество"; // // label3 // label3.AutoSize = true; label3.Location = new Point(12, 39); label3.Name = "label3"; label3.Size = new Size(35, 15); label3.TabIndex = 1; label3.Text = "Цена"; // // textBoxFoodName // textBoxFoodName.Location = new Point(90, 6); textBoxFoodName.Name = "textBoxFoodName"; textBoxFoodName.Size = new Size(218, 23); textBoxFoodName.TabIndex = 2; // // textBoxPrice // textBoxPrice.Location = new Point(90, 64); textBoxPrice.Name = "textBoxPrice"; textBoxPrice.Size = new Size(218, 23); textBoxPrice.TabIndex = 3; // // textBoxDeskr // textBoxDeskr.Location = new Point(90, 36); textBoxDeskr.Name = "textBoxDeskr"; textBoxDeskr.Size = new Size(218, 23); textBoxDeskr.TabIndex = 4; // // buttonCancel // buttonCancel.Location = new Point(236, 93); buttonCancel.Name = "buttonCancel"; buttonCancel.Size = new Size(77, 30); buttonCancel.TabIndex = 7; buttonCancel.Text = "Отмена"; buttonCancel.UseVisualStyleBackColor = true; buttonCancel.Click += buttonCancel_Click; // // buttonSave // buttonSave.Location = new Point(153, 93); buttonSave.Name = "buttonSave"; buttonSave.Size = new Size(83, 30); buttonSave.TabIndex = 6; buttonSave.Text = "Сохранить"; buttonSave.UseVisualStyleBackColor = true; buttonSave.Click += buttonSave_Click; // // FormConstructionMaterial // AutoScaleDimensions = new SizeF(7F, 15F); AutoScaleMode = AutoScaleMode.Font; ClientSize = new Size(325, 130); Controls.Add(buttonCancel); Controls.Add(buttonSave); Controls.Add(textBoxDeskr); Controls.Add(textBoxPrice); Controls.Add(textBoxFoodName); Controls.Add(label3); Controls.Add(label2); Controls.Add(label1); Name = "FormConstructionMaterial"; Text = "Строй материал"; Load += FormMenu_Load; ResumeLayout(false); PerformLayout(); } #endregion private Label label1; private Label label2; private Label label3; private TextBox textBoxFoodName; private TextBox textBoxPrice; private TextBox textBoxDeskr; private Button buttonCancel; private Button buttonSave; } }