namespace SewingDresses { partial class FormOrderCreation { /// /// 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() { dressLabel = new Label(); quantityLabel = new Label(); priceLabel = new Label(); dressComboBox = new ComboBox(); quantityTextBox = new TextBox(); priceTextBox = new TextBox(); ButtonSave = new Button(); ButtonCancel = new Button(); labelClient = new Label(); comboBoxClients = new ComboBox(); SuspendLayout(); // // dressLabel // dressLabel.AutoSize = true; dressLabel.Font = new Font("Segoe UI", 14.25F, FontStyle.Regular, GraphicsUnit.Point); dressLabel.Location = new Point(12, 9); dressLabel.Name = "dressLabel"; dressLabel.Size = new Size(82, 25); dressLabel.TabIndex = 0; dressLabel.Text = "Product:"; // // quantityLabel // quantityLabel.AutoSize = true; quantityLabel.Font = new Font("Segoe UI", 14.25F, FontStyle.Regular, GraphicsUnit.Point); quantityLabel.Location = new Point(12, 78); quantityLabel.Name = "quantityLabel"; quantityLabel.Size = new Size(88, 25); quantityLabel.TabIndex = 1; quantityLabel.Text = "Quantity:"; // // priceLabel // priceLabel.AutoSize = true; priceLabel.Font = new Font("Segoe UI", 14.25F, FontStyle.Regular, GraphicsUnit.Point); priceLabel.Location = new Point(12, 118); priceLabel.Name = "priceLabel"; priceLabel.Size = new Size(56, 25); priceLabel.TabIndex = 2; priceLabel.Text = "Total:"; // // dressComboBox // dressComboBox.DropDownStyle = ComboBoxStyle.DropDownList; dressComboBox.FormattingEnabled = true; dressComboBox.Location = new Point(114, 12); dressComboBox.Name = "dressComboBox"; dressComboBox.Size = new Size(320, 23); dressComboBox.TabIndex = 3; dressComboBox.SelectedIndexChanged += DressComboBox_SelectedIndexChanged; // // quantityTextBox // quantityTextBox.Location = new Point(114, 80); quantityTextBox.Name = "quantityTextBox"; quantityTextBox.Size = new Size(320, 23); quantityTextBox.TabIndex = 4; quantityTextBox.TextChanged += QuantityTextBox_TextChanged; // // priceTextBox // priceTextBox.Location = new Point(114, 118); priceTextBox.Name = "priceTextBox"; priceTextBox.ReadOnly = true; priceTextBox.Size = new Size(320, 23); priceTextBox.TabIndex = 5; // // ButtonSave // ButtonSave.Location = new Point(220, 166); ButtonSave.Name = "ButtonSave"; ButtonSave.Size = new Size(100, 32); ButtonSave.TabIndex = 6; ButtonSave.Text = "Save"; ButtonSave.UseVisualStyleBackColor = true; ButtonSave.Click += ButtonSave_Click; // // ButtonCancel // ButtonCancel.Location = new Point(334, 166); ButtonCancel.Name = "ButtonCancel"; ButtonCancel.Size = new Size(100, 32); ButtonCancel.TabIndex = 7; ButtonCancel.Text = "Cancel"; ButtonCancel.UseVisualStyleBackColor = true; ButtonCancel.Click += ButtonCancel_Click; // // labelClient // labelClient.AutoSize = true; labelClient.Font = new Font("Segoe UI", 14.25F, FontStyle.Regular, GraphicsUnit.Point); labelClient.Location = new Point(12, 43); labelClient.Name = "labelClient"; labelClient.Size = new Size(65, 25); labelClient.TabIndex = 8; labelClient.Text = "Client:"; // // comboBoxClients // comboBoxClients.DropDownStyle = ComboBoxStyle.DropDownList; comboBoxClients.FormattingEnabled = true; comboBoxClients.Location = new Point(114, 43); comboBoxClients.Name = "comboBoxClients"; comboBoxClients.Size = new Size(320, 23); comboBoxClients.TabIndex = 9; // // FormOrderCreation // AutoScaleDimensions = new SizeF(7F, 15F); AutoScaleMode = AutoScaleMode.Font; ClientSize = new Size(446, 224); Controls.Add(comboBoxClients); Controls.Add(labelClient); Controls.Add(ButtonCancel); Controls.Add(ButtonSave); Controls.Add(priceTextBox); Controls.Add(quantityTextBox); Controls.Add(dressComboBox); Controls.Add(priceLabel); Controls.Add(quantityLabel); Controls.Add(dressLabel); Name = "FormOrderCreation"; Text = "FormOrderCreation"; Load += FormOrderCreation_Load; ResumeLayout(false); PerformLayout(); } #endregion private Label dressLabel; private Label quantityLabel; private Label priceLabel; private ComboBox dressComboBox; private TextBox quantityTextBox; private TextBox priceTextBox; private Button ButtonSave; private Button ButtonCancel; private Label labelClient; private ComboBox comboBoxClients; } }