namespace PrecastConcretePlantView { partial class FormShopRefill { /// /// 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() { labelShop = new Label(); labelReinforced = new Label(); labelCount = new Label(); comboBoxShop = new ComboBox(); comboBoxReinforced = new ComboBox(); textBoxCount = new TextBox(); buttonCancel = new Button(); buttonSave = new Button(); SuspendLayout(); // // labelShop // labelShop.AutoSize = true; labelShop.Location = new Point(27, 29); labelShop.Name = "labelShop"; labelShop.Size = new Size(72, 20); labelShop.TabIndex = 0; labelShop.Text = "Магазин:"; // // labelReinforced // labelReinforced.AutoSize = true; labelReinforced.Location = new Point(27, 73); labelReinforced.Name = "labelReinforced"; labelReinforced.Size = new Size(71, 20); labelReinforced.TabIndex = 1; labelReinforced.Text = "Изделие:"; // // labelCount // labelCount.AutoSize = true; labelCount.Location = new Point(27, 118); labelCount.Name = "labelCount"; labelCount.Size = new Size(93, 20); labelCount.TabIndex = 2; labelCount.Text = "Количество:"; // // comboBoxShop // comboBoxShop.DropDownStyle = ComboBoxStyle.DropDownList; comboBoxShop.FormattingEnabled = true; comboBoxShop.Location = new Point(136, 29); comboBoxShop.Name = "comboBoxShop"; comboBoxShop.Size = new Size(239, 28); comboBoxShop.TabIndex = 3; // // comboBoxReinforced // comboBoxReinforced.DropDownStyle = ComboBoxStyle.DropDownList; comboBoxReinforced.FormattingEnabled = true; comboBoxReinforced.Location = new Point(136, 73); comboBoxReinforced.Name = "comboBoxReinforced"; comboBoxReinforced.Size = new Size(239, 28); comboBoxReinforced.TabIndex = 4; // // textBoxCount // textBoxCount.Location = new Point(136, 118); textBoxCount.Name = "textBoxCount"; textBoxCount.Size = new Size(239, 27); textBoxCount.TabIndex = 5; // // buttonCancel // buttonCancel.Location = new Point(282, 162); buttonCancel.Name = "buttonCancel"; buttonCancel.Size = new Size(93, 29); buttonCancel.TabIndex = 6; buttonCancel.Text = "Отмена"; buttonCancel.UseVisualStyleBackColor = true; buttonCancel.Click += ButtonCancel_Click; // // buttonSave // buttonSave.Location = new Point(182, 162); buttonSave.Name = "buttonSave"; buttonSave.Size = new Size(94, 29); buttonSave.TabIndex = 7; buttonSave.Text = "Сохранить"; buttonSave.UseVisualStyleBackColor = true; buttonSave.Click += ButtonSave_Click; // // FormShopRefill // AutoScaleDimensions = new SizeF(8F, 20F); AutoScaleMode = AutoScaleMode.Font; ClientSize = new Size(422, 203); Controls.Add(buttonSave); Controls.Add(buttonCancel); Controls.Add(textBoxCount); Controls.Add(comboBoxReinforced); Controls.Add(comboBoxShop); Controls.Add(labelCount); Controls.Add(labelReinforced); Controls.Add(labelShop); Name = "FormShopRefill"; StartPosition = FormStartPosition.CenterScreen; Text = "Пополнение магазина"; Load += FormShopRefill_Load; ResumeLayout(false); PerformLayout(); } #endregion private Label labelShop; private Label labelReinforced; private Label labelCount; private ComboBox comboBoxShop; private ComboBox comboBoxReinforced; private TextBox textBoxCount; private Button buttonCancel; private Button buttonSave; } }