namespace SoftwareInstallationView { partial class FormMakeShipment { /// /// 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(); comboBoxShop = new ComboBox(); labelPackage = new Label(); comboBoxPackage = new ComboBox(); labelCount = new Label(); textBoxCount = new TextBox(); buttonSave = new Button(); buttonCancel = new Button(); SuspendLayout(); // // labelShop // labelShop.AutoSize = true; labelShop.Location = new Point(16, 17); labelShop.Margin = new Padding(5, 0, 5, 0); labelShop.Name = "labelShop"; labelShop.Size = new Size(76, 20); labelShop.TabIndex = 2; labelShop.Text = "Магазин :"; // // comboBoxShop // comboBoxShop.DropDownStyle = ComboBoxStyle.DropDownList; comboBoxShop.FormattingEnabled = true; comboBoxShop.Location = new Point(117, 13); comboBoxShop.Margin = new Padding(5, 4, 5, 4); comboBoxShop.Name = "comboBoxShop"; comboBoxShop.Size = new Size(287, 28); comboBoxShop.TabIndex = 5; // // labelPackage // labelPackage.AutoSize = true; labelPackage.Location = new Point(16, 64); labelPackage.Margin = new Padding(5, 0, 5, 0); labelPackage.Name = "labelPackage"; labelPackage.Size = new Size(34, 20); labelPackage.TabIndex = 6; labelPackage.Text = "ПО:"; // // comboBoxPackage // comboBoxPackage.DropDownStyle = ComboBoxStyle.DropDownList; comboBoxPackage.FormattingEnabled = true; comboBoxPackage.Location = new Point(117, 59); comboBoxPackage.Margin = new Padding(5, 4, 5, 4); comboBoxPackage.Name = "comboBoxPackage"; comboBoxPackage.Size = new Size(287, 28); comboBoxPackage.TabIndex = 7; // // labelCount // labelCount.AutoSize = true; labelCount.Location = new Point(16, 111); labelCount.Margin = new Padding(5, 0, 5, 0); labelCount.Name = "labelCount"; labelCount.Size = new Size(97, 20); labelCount.TabIndex = 8; labelCount.Text = "Количество :"; // // textBoxCount // textBoxCount.Location = new Point(117, 107); textBoxCount.Margin = new Padding(5, 4, 5, 4); textBoxCount.Name = "textBoxCount"; textBoxCount.Size = new Size(287, 27); textBoxCount.TabIndex = 9; // // buttonSave // buttonSave.Location = new Point(183, 149); buttonSave.Margin = new Padding(5, 4, 5, 4); buttonSave.Name = "buttonSave"; buttonSave.Size = new Size(101, 36); buttonSave.TabIndex = 10; buttonSave.Text = "Сохранить"; buttonSave.UseVisualStyleBackColor = true; buttonSave.Click += ButtonSave_Click; // // buttonCancel // buttonCancel.Location = new Point(290, 149); buttonCancel.Margin = new Padding(5, 4, 5, 4); buttonCancel.Name = "buttonCancel"; buttonCancel.Size = new Size(101, 36); buttonCancel.TabIndex = 11; buttonCancel.Text = "Отмена"; buttonCancel.UseVisualStyleBackColor = true; buttonCancel.Click += ButtonCancel_Click; // // FormMakeShipment // AutoScaleDimensions = new SizeF(8F, 20F); AutoScaleMode = AutoScaleMode.Font; ClientSize = new Size(426, 196); Controls.Add(buttonCancel); Controls.Add(buttonSave); Controls.Add(textBoxCount); Controls.Add(labelCount); Controls.Add(comboBoxPackage); Controls.Add(labelPackage); Controls.Add(comboBoxShop); Controls.Add(labelShop); Margin = new Padding(3, 4, 3, 4); Name = "FormMakeShipment"; StartPosition = FormStartPosition.CenterScreen; Text = "Пополнение магазина"; Load += FormMakeShipment_Load; ResumeLayout(false); PerformLayout(); } #endregion private Label labelShop; private ComboBox comboBoxShop; private Label labelPackage; private ComboBox comboBoxPackage; private Label labelCount; private TextBox textBoxCount; private Button buttonSave; private Button buttonCancel; } }