namespace SoftwareInstallationView { partial class FormSellPackage { /// /// 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() { labelPackage = new Label(); comboBoxPackage = new ComboBox(); labelCount = new Label(); textBoxCount = new TextBox(); buttonSell = new Button(); buttonCancel = new Button(); SuspendLayout(); // // labelPackage // labelPackage.AutoSize = true; labelPackage.Location = new Point(12, 14); labelPackage.Name = "labelPackage"; labelPackage.Size = new Size(38, 20); labelPackage.TabIndex = 0; labelPackage.Text = "ПО: "; // // comboBoxPackage // comboBoxPackage.FormattingEnabled = true; comboBoxPackage.Location = new Point(115, 11); comboBoxPackage.Name = "comboBoxPackage"; comboBoxPackage.Size = new Size(239, 28); comboBoxPackage.TabIndex = 1; // // labelCount // labelCount.AutoSize = true; labelCount.Location = new Point(12, 55); labelCount.Name = "labelCount"; labelCount.Size = new Size(97, 20); labelCount.TabIndex = 2; labelCount.Text = "Количество: "; // // textBoxCount // textBoxCount.Location = new Point(115, 52); textBoxCount.Name = "textBoxCount"; textBoxCount.Size = new Size(239, 27); textBoxCount.TabIndex = 3; // // buttonSell // buttonSell.Location = new Point(128, 99); buttonSell.Name = "buttonSell"; buttonSell.Size = new Size(94, 29); buttonSell.TabIndex = 4; buttonSell.Text = "Продать"; buttonSell.UseVisualStyleBackColor = true; buttonSell.Click += ButtonSell_Click; // // buttonCancel // buttonCancel.Location = new Point(242, 99); buttonCancel.Name = "buttonCancel"; buttonCancel.Size = new Size(94, 29); buttonCancel.TabIndex = 5; buttonCancel.Text = "Отмена"; buttonCancel.UseVisualStyleBackColor = true; buttonCancel.Click += ButtonCancel_Click; // // FormSellPackage // AutoScaleDimensions = new SizeF(8F, 20F); AutoScaleMode = AutoScaleMode.Font; ClientSize = new Size(366, 140); Controls.Add(buttonCancel); Controls.Add(buttonSell); Controls.Add(textBoxCount); Controls.Add(labelCount); Controls.Add(comboBoxPackage); Controls.Add(labelPackage); Name = "FormSellPackage"; Text = "Продажа ПО"; Load += FormSellingPackage_Load; ResumeLayout(false); PerformLayout(); } #endregion private Label labelPackage; private ComboBox comboBoxPackage; private Label labelCount; private TextBox textBoxCount; private Button buttonSell; private Button buttonCancel; } }