namespace SushiBarView.Forms { partial class FormDishIngredient { /// /// 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() { ComponentLabel = new Label(); CountLabel = new Label(); CountTextBox = new TextBox(); ComboBox = new ComboBox(); SaveButton = new Button(); CancelButton = new Button(); SuspendLayout(); // // ComponentLabel // ComponentLabel.AutoSize = true; ComponentLabel.Location = new Point(14, 15); ComponentLabel.Name = "ComponentLabel"; ComponentLabel.Size = new Size(75, 15); ComponentLabel.TabIndex = 0; ComponentLabel.Text = "Ингредиент:"; // // CountLabel // CountLabel.AutoSize = true; CountLabel.Location = new Point(14, 46); CountLabel.Name = "CountLabel"; CountLabel.Size = new Size(75, 15); CountLabel.TabIndex = 1; CountLabel.Text = "Количество:"; // // CountTextBox // CountTextBox.Location = new Point(95, 43); CountTextBox.Name = "CountTextBox"; CountTextBox.Size = new Size(292, 23); CountTextBox.TabIndex = 2; // // ComboBox // ComboBox.DropDownStyle = ComboBoxStyle.DropDownList; ComboBox.FormattingEnabled = true; ComboBox.Location = new Point(95, 12); ComboBox.Name = "ComboBox"; ComboBox.Size = new Size(292, 23); ComboBox.TabIndex = 3; // // SaveButton // SaveButton.Location = new Point(205, 81); SaveButton.Name = "SaveButton"; SaveButton.Size = new Size(90, 32); SaveButton.TabIndex = 4; SaveButton.Text = "Сохранить"; SaveButton.UseVisualStyleBackColor = true; SaveButton.Click += ButtonSave_Click; // // CancelButton // CancelButton.Location = new Point(301, 81); CancelButton.Name = "CancelButton"; CancelButton.Size = new Size(86, 32); CancelButton.TabIndex = 5; CancelButton.Text = "Отмена"; CancelButton.UseVisualStyleBackColor = true; CancelButton.Click += ButtonCancel_Click; // // FormDishIngredient // AutoScaleDimensions = new SizeF(7F, 15F); AutoScaleMode = AutoScaleMode.Font; ClientSize = new Size(407, 130); Controls.Add(CancelButton); Controls.Add(SaveButton); Controls.Add(ComboBox); Controls.Add(CountTextBox); Controls.Add(CountLabel); Controls.Add(ComponentLabel); Name = "FormDishIngredient"; Text = "Ингредиент блюда"; ResumeLayout(false); PerformLayout(); } #endregion private Label ComponentLabel; private Label CountLabel; private TextBox CountTextBox; private ComboBox ComboBox; private Button SaveButton; private Button CancelButton; } }