namespace ProjectFlowerShop { partial class SupplyForm { /// /// 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() { buttonSave = new Button(); buttonCancel = new Button(); labelShop = new Label(); labelFlower = new Label(); labelNumber = new Label(); comboBoxShop = new ComboBox(); comboBoxFlower = new ComboBox(); textBoxNumber = new TextBox(); SuspendLayout(); // // buttonSave // buttonSave.Location = new Point(195, 186); buttonSave.Name = "buttonSave"; buttonSave.Size = new Size(111, 29); buttonSave.TabIndex = 0; buttonSave.Text = "Сохранить"; buttonSave.UseVisualStyleBackColor = true; buttonSave.Click += buttonSave_Click; // // buttonCancel // buttonCancel.Location = new Point(312, 186); buttonCancel.Name = "buttonCancel"; buttonCancel.Size = new Size(108, 29); buttonCancel.TabIndex = 1; buttonCancel.Text = "Отмена"; buttonCancel.UseVisualStyleBackColor = true; buttonCancel.Click += buttonCancel_Click; // // labelShop // labelShop.AutoSize = true; labelShop.Location = new Point(12, 13); labelShop.Name = "labelShop"; labelShop.Size = new Size(69, 20); labelShop.TabIndex = 2; labelShop.Text = "Магазин"; // // labelFlower // labelFlower.AutoSize = true; labelFlower.Location = new Point(12, 67); labelFlower.Name = "labelFlower"; labelFlower.Size = new Size(53, 20); labelFlower.TabIndex = 3; labelFlower.Text = "Цветы"; // // labelNumber // labelNumber.AutoSize = true; labelNumber.Location = new Point(12, 121); labelNumber.Name = "labelNumber"; labelNumber.Size = new Size(90, 20); labelNumber.TabIndex = 4; labelNumber.Text = "Количество"; // // comboBoxShop // comboBoxShop.FormattingEnabled = true; comboBoxShop.Location = new Point(12, 36); comboBoxShop.Name = "comboBoxShop"; comboBoxShop.Size = new Size(294, 28); comboBoxShop.TabIndex = 5; // // comboBoxFlower // comboBoxFlower.FormattingEnabled = true; comboBoxFlower.Location = new Point(12, 90); comboBoxFlower.Name = "comboBoxFlower"; comboBoxFlower.Size = new Size(294, 28); comboBoxFlower.TabIndex = 6; // // textBoxNumber // textBoxNumber.Location = new Point(12, 144); textBoxNumber.Name = "textBoxNumber"; textBoxNumber.Size = new Size(151, 27); textBoxNumber.TabIndex = 7; // // SupplyForm // AutoScaleDimensions = new SizeF(8F, 20F); AutoScaleMode = AutoScaleMode.Font; ClientSize = new Size(430, 227); Controls.Add(textBoxNumber); Controls.Add(comboBoxFlower); Controls.Add(comboBoxShop); Controls.Add(labelNumber); Controls.Add(labelFlower); Controls.Add(labelShop); Controls.Add(buttonCancel); Controls.Add(buttonSave); Name = "SupplyForm"; Text = "Форма поставки"; ResumeLayout(false); PerformLayout(); } #endregion private Button buttonSave; private Button buttonCancel; private Label labelShop; private Label labelFlower; private Label labelNumber; private ComboBox comboBoxShop; private ComboBox comboBoxFlower; private TextBox textBoxNumber; } }