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(); labelCount = new Label(); labelSum = new Label(); comboBoxPackage = new ComboBox(); textBoxCount = new TextBox(); textBoxSum = new TextBox(); buttonSave = new Button(); buttonCancel = new Button(); labelClient = new Label(); comboBoxClient = new ComboBox(); SuspendLayout(); // // labelPackage // labelPackage.AutoSize = true; labelPackage.Font = new Font("Segoe UI", 10F); labelPackage.Location = new Point(12, 13); labelPackage.Name = "labelPackage"; labelPackage.Size = new Size(66, 19); labelPackage.TabIndex = 0; labelPackage.Text = "Изделие "; // // labelCount // labelCount.AutoSize = true; labelCount.Font = new Font("Segoe UI", 10F); labelCount.Location = new Point(12, 47); labelCount.Name = "labelCount"; labelCount.Size = new Size(82, 19); labelCount.TabIndex = 1; labelCount.Text = "Количество"; // // labelSum // labelSum.AutoSize = true; labelSum.Font = new Font("Segoe UI", 10F); labelSum.Location = new Point(12, 113); labelSum.Name = "labelSum"; labelSum.Size = new Size(52, 19); labelSum.TabIndex = 2; labelSum.Text = "Сумма"; // // comboBoxPackage // comboBoxPackage.FormattingEnabled = true; comboBoxPackage.Location = new Point(122, 9); comboBoxPackage.Name = "comboBoxPackage"; comboBoxPackage.Size = new Size(287, 23); comboBoxPackage.TabIndex = 3; comboBoxPackage.SelectedIndexChanged += comboBoxPackage_SelectedIndexChanged; // // textBoxCount // textBoxCount.Location = new Point(122, 43); textBoxCount.Name = "textBoxCount"; textBoxCount.Size = new Size(287, 23); textBoxCount.TabIndex = 4; textBoxCount.TextChanged += textBoxCount_TextChanged; // // textBoxSum // textBoxSum.Location = new Point(122, 106); textBoxSum.Name = "textBoxSum"; textBoxSum.Size = new Size(287, 23); textBoxSum.TabIndex = 5; // // buttonSave // buttonSave.Location = new Point(229, 135); buttonSave.Name = "buttonSave"; buttonSave.Size = new Size(96, 23); buttonSave.TabIndex = 6; buttonSave.Text = "Сохранить"; buttonSave.UseVisualStyleBackColor = true; buttonSave.Click += buttonSave_Click; // // buttonCancel // buttonCancel.Location = new Point(331, 135); buttonCancel.Name = "buttonCancel"; buttonCancel.Size = new Size(96, 23); buttonCancel.TabIndex = 7; buttonCancel.Text = "Отменить"; buttonCancel.UseVisualStyleBackColor = true; buttonCancel.Click += buttonCancel_Click; // // labelClient // labelClient.AutoSize = true; labelClient.Location = new Point(12, 85); labelClient.Name = "labelClient"; labelClient.Size = new Size(49, 15); labelClient.TabIndex = 9; labelClient.Text = "Клиент:"; // // comboBoxClient // comboBoxClient.DropDownStyle = ComboBoxStyle.DropDownList; comboBoxClient.FormattingEnabled = true; comboBoxClient.Location = new Point(122, 77); comboBoxClient.Name = "comboBoxClient"; comboBoxClient.Size = new Size(287, 23); comboBoxClient.TabIndex = 10; // // FormCreateOrder // AutoScaleDimensions = new SizeF(7F, 15F); AutoScaleMode = AutoScaleMode.Font; ClientSize = new Size(439, 170); Controls.Add(comboBoxClient); Controls.Add(labelClient); Controls.Add(buttonCancel); Controls.Add(buttonSave); Controls.Add(textBoxSum); Controls.Add(textBoxCount); Controls.Add(comboBoxPackage); Controls.Add(labelSum); Controls.Add(labelCount); Controls.Add(labelPackage); Name = "FormCreateOrder"; Text = "Заказ"; Load += FormCreateOrder_Load; ResumeLayout(false); PerformLayout(); } #endregion private Label labelPackage; private Label labelCount; private Label labelSum; private ComboBox comboBoxPackage; private TextBox textBoxCount; private TextBox textBoxSum; private Button buttonSave; private Button buttonCancel; private Label labelClient; private ComboBox comboBoxClient; } }