namespace SoftwareInstallationView { partial class FormCreateOrder { /// /// 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(); labelSum = new Label(); textBoxSum = new TextBox(); buttonSave = new Button(); buttonCancel = new Button(); SuspendLayout(); // // labelPackage // labelPackage.AutoSize = true; labelPackage.Location = new Point(16, 13); labelPackage.Margin = new Padding(5, 0, 5, 0); labelPackage.Name = "labelPackage"; labelPackage.Size = new Size(34, 20); labelPackage.TabIndex = 1; labelPackage.Text = "ПО:"; // // comboBoxPackage // comboBoxPackage.DropDownStyle = ComboBoxStyle.DropDownList; comboBoxPackage.FormattingEnabled = true; comboBoxPackage.Location = new Point(117, 9); comboBoxPackage.Margin = new Padding(5, 4, 5, 4); comboBoxPackage.Name = "comboBoxPackage"; comboBoxPackage.Size = new Size(287, 28); comboBoxPackage.TabIndex = 2; comboBoxPackage.SelectedIndexChanged += ComboBoxPackage_SelectedIndexChanged; // // labelCount // labelCount.AutoSize = true; labelCount.Location = new Point(16, 56); labelCount.Margin = new Padding(5, 0, 5, 0); labelCount.Name = "labelCount"; labelCount.Size = new Size(97, 20); labelCount.TabIndex = 3; labelCount.Text = "Количество :"; // // textBoxCount // textBoxCount.Location = new Point(117, 51); textBoxCount.Margin = new Padding(5, 4, 5, 4); textBoxCount.Name = "textBoxCount"; textBoxCount.Size = new Size(287, 27); textBoxCount.TabIndex = 4; textBoxCount.TextChanged += TextBoxCount_TextChanged; // // labelSum // labelSum.AutoSize = true; labelSum.Location = new Point(16, 96); labelSum.Margin = new Padding(5, 0, 5, 0); labelSum.Name = "labelSum"; labelSum.Size = new Size(62, 20); labelSum.TabIndex = 5; labelSum.Text = "Сумма :"; // // textBoxSum // textBoxSum.Location = new Point(117, 91); textBoxSum.Margin = new Padding(5, 4, 5, 4); textBoxSum.Name = "textBoxSum"; textBoxSum.ReadOnly = true; textBoxSum.Size = new Size(287, 27); textBoxSum.TabIndex = 6; // // buttonSave // buttonSave.Location = new Point(184, 131); buttonSave.Margin = new Padding(5, 4, 5, 4); buttonSave.Name = "buttonSave"; buttonSave.Size = new Size(101, 36); buttonSave.TabIndex = 7; buttonSave.Text = "Сохранить"; buttonSave.UseVisualStyleBackColor = true; buttonSave.Click += ButtonSave_Click; // // buttonCancel // buttonCancel.Location = new Point(291, 131); buttonCancel.Margin = new Padding(5, 4, 5, 4); buttonCancel.Name = "buttonCancel"; buttonCancel.Size = new Size(101, 36); buttonCancel.TabIndex = 8; buttonCancel.Text = "Отмена"; buttonCancel.UseVisualStyleBackColor = true; buttonCancel.Click += ButtonCancel_Click; // // FormCreateOrder // AutoScaleDimensions = new SizeF(8F, 20F); AutoScaleMode = AutoScaleMode.Font; ClientSize = new Size(424, 181); Controls.Add(buttonCancel); Controls.Add(buttonSave); Controls.Add(textBoxSum); Controls.Add(labelSum); Controls.Add(textBoxCount); Controls.Add(labelCount); Controls.Add(comboBoxPackage); Controls.Add(labelPackage); Margin = new Padding(3, 4, 3, 4); Name = "FormCreateOrder"; StartPosition = FormStartPosition.CenterScreen; Text = "Заказ"; Load += FormCreateOrder_Load; ResumeLayout(false); PerformLayout(); } #endregion private Label labelPackage; private ComboBox comboBoxPackage; private Label labelCount; private TextBox textBoxCount; private Label labelSum; private TextBox textBoxSum; private Button buttonSave; private Button buttonCancel; } }