namespace ProjectFlowerShop { partial class FormFlowerComponent { /// /// 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() { labelComponent = new Label(); labelNumber = new Label(); comboBoxComponent = new ComboBox(); textBoxNumber = new TextBox(); buttonSave = new Button(); buttonCancel = new Button(); SuspendLayout(); // // labelComponent // labelComponent.AutoSize = true; labelComponent.Location = new Point(32, 15); labelComponent.Name = "labelComponent"; labelComponent.Size = new Size(88, 20); labelComponent.TabIndex = 0; labelComponent.Text = "Компонент"; // // labelNumber // labelNumber.AutoSize = true; labelNumber.Location = new Point(32, 56); labelNumber.Name = "labelNumber"; labelNumber.Size = new Size(90, 20); labelNumber.TabIndex = 1; labelNumber.Text = "Количество"; // // comboBoxComponent // comboBoxComponent.FormattingEnabled = true; comboBoxComponent.Location = new Point(220, 12); comboBoxComponent.Name = "comboBoxComponent"; comboBoxComponent.Size = new Size(362, 28); comboBoxComponent.TabIndex = 2; // // textBoxNumber // textBoxNumber.Location = new Point(220, 53); textBoxNumber.Name = "textBoxNumber"; textBoxNumber.Size = new Size(362, 27); textBoxNumber.TabIndex = 3; // // buttonSave // buttonSave.Location = new Point(338, 191); buttonSave.Name = "buttonSave"; buttonSave.Size = new Size(119, 29); buttonSave.TabIndex = 4; buttonSave.Text = "Сохранить"; buttonSave.UseVisualStyleBackColor = true; buttonSave.Click += buttonSave_Click; // // buttonCancel // buttonCancel.Location = new Point(463, 191); buttonCancel.Name = "buttonCancel"; buttonCancel.Size = new Size(119, 29); buttonCancel.TabIndex = 5; buttonCancel.Text = "Отмена"; buttonCancel.UseVisualStyleBackColor = true; buttonCancel.Click += buttonCancel_Click; // // FormFlowerComponent // AutoScaleDimensions = new SizeF(8F, 20F); AutoScaleMode = AutoScaleMode.Font; ClientSize = new Size(594, 232); Controls.Add(buttonCancel); Controls.Add(buttonSave); Controls.Add(textBoxNumber); Controls.Add(comboBoxComponent); Controls.Add(labelNumber); Controls.Add(labelComponent); Name = "FormFlowerComponent"; Text = "Цветок-компонент"; ResumeLayout(false); PerformLayout(); } #endregion private Label labelComponent; private Label labelNumber; private ComboBox comboBoxComponent; private TextBox textBoxNumber; private Button buttonSave; private Button buttonCancel; } }