namespace GarmentFactoryView { partial class FormAddTextile { /// /// 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(); labelCount = new Label(); labelTextile = new Label(); comboBoxShop = new ComboBox(); textBoxCount = new TextBox(); comboBoxTextile = new ComboBox(); buttonCancel = new Button(); buttonSave = new Button(); SuspendLayout(); // // labelShop // labelShop.AutoSize = true; labelShop.Location = new Point(38, 37); labelShop.Name = "labelShop"; labelShop.Size = new Size(72, 20); labelShop.TabIndex = 0; labelShop.Text = "Магазин:"; // // labelCount // labelCount.AutoSize = true; labelCount.Location = new Point(29, 123); labelCount.Name = "labelCount"; labelCount.Size = new Size(93, 20); labelCount.TabIndex = 3; labelCount.Text = "Количество:"; // // labelTextile // labelTextile.AutoSize = true; labelTextile.Location = new Point(38, 79); labelTextile.Name = "labelTextile"; labelTextile.Size = new Size(71, 20); labelTextile.TabIndex = 2; labelTextile.Text = "Изделие:"; // // comboBoxShop // comboBoxShop.DropDownStyle = ComboBoxStyle.DropDownList; comboBoxShop.FormattingEnabled = true; comboBoxShop.Location = new Point(140, 37); comboBoxShop.Name = "comboBoxShop"; comboBoxShop.Size = new Size(262, 28); comboBoxShop.TabIndex = 11; // // textBoxCount // textBoxCount.Location = new Point(140, 123); textBoxCount.Name = "textBoxCount"; textBoxCount.Size = new Size(262, 27); textBoxCount.TabIndex = 10; // // comboBoxTextile // comboBoxTextile.DropDownStyle = ComboBoxStyle.DropDownList; comboBoxTextile.FormattingEnabled = true; comboBoxTextile.Location = new Point(140, 79); comboBoxTextile.Name = "comboBoxTextile"; comboBoxTextile.Size = new Size(262, 28); comboBoxTextile.TabIndex = 9; // // buttonCancel // buttonCancel.Location = new Point(342, 181); buttonCancel.Name = "buttonCancel"; buttonCancel.Size = new Size(94, 29); buttonCancel.TabIndex = 13; buttonCancel.Text = "Отмена"; buttonCancel.UseVisualStyleBackColor = true; buttonCancel.Click += ButtonCancel_Click; // // buttonSave // buttonSave.Location = new Point(242, 181); buttonSave.Name = "buttonSave"; buttonSave.Size = new Size(94, 29); buttonSave.TabIndex = 12; buttonSave.Text = "Сохранить"; buttonSave.UseVisualStyleBackColor = true; buttonSave.Click += ButtonSave_Click; // // FormAddTextile // AutoScaleDimensions = new SizeF(8F, 20F); AutoScaleMode = AutoScaleMode.Font; ClientSize = new Size(455, 222); Controls.Add(buttonCancel); Controls.Add(buttonSave); Controls.Add(comboBoxShop); Controls.Add(textBoxCount); Controls.Add(comboBoxTextile); Controls.Add(labelCount); Controls.Add(labelTextile); Controls.Add(labelShop); Name = "FormAddTextile"; Text = "Пополнение магазина"; Load += FormAddTextile_Load; ResumeLayout(false); PerformLayout(); } #endregion private Label labelShop; private Label labelCount; private Label labelTextile; private ComboBox comboBoxShop; private TextBox textBoxCount; private ComboBox comboBoxTextile; private Button buttonCancel; private Button buttonSave; } }