namespace AutomobilePlantView { 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() { labelCar = new Label(); labelCount = new Label(); labelSum = new Label(); comboBoxCar = new ComboBox(); textBoxCount = new TextBox(); textBoxSum = new TextBox(); buttonSave = new Button(); buttonCancel = new Button(); comboBoxClient = new ComboBox(); labelClient = new Label(); SuspendLayout(); // // labelCar // labelCar.AutoSize = true; labelCar.Location = new Point(12, 9); labelCar.Name = "labelCar"; labelCar.Size = new Size(28, 15); labelCar.TabIndex = 0; labelCar.Text = "Car:"; // // labelCount // labelCount.AutoSize = true; labelCount.Location = new Point(12, 67); labelCount.Name = "labelCount"; labelCount.Size = new Size(43, 15); labelCount.TabIndex = 1; labelCount.Text = "Count:"; // // labelSum // labelSum.AutoSize = true; labelSum.Location = new Point(12, 96); labelSum.Name = "labelSum"; labelSum.Size = new Size(34, 15); labelSum.TabIndex = 2; labelSum.Text = "Sum:"; // // comboBoxCar // comboBoxCar.FormattingEnabled = true; comboBoxCar.Location = new Point(61, 6); comboBoxCar.Name = "comboBoxCar"; comboBoxCar.Size = new Size(727, 23); comboBoxCar.TabIndex = 3; comboBoxCar.SelectedIndexChanged += ComboBoxCar_SelectedIndexChanged; // // textBoxCount // textBoxCount.Location = new Point(61, 64); textBoxCount.Name = "textBoxCount"; textBoxCount.Size = new Size(727, 23); textBoxCount.TabIndex = 4; textBoxCount.TextChanged += TextBoxCount_TextChanged; // // textBoxSum // textBoxSum.Location = new Point(61, 93); textBoxSum.Name = "textBoxSum"; textBoxSum.ReadOnly = true; textBoxSum.Size = new Size(727, 23); textBoxSum.TabIndex = 5; // // buttonSave // buttonSave.Location = new Point(632, 122); buttonSave.Name = "buttonSave"; buttonSave.Size = new Size(75, 23); buttonSave.TabIndex = 6; buttonSave.Text = "Save"; buttonSave.UseVisualStyleBackColor = true; buttonSave.Click += ButtonSave_Click; // // buttonCancel // buttonCancel.Location = new Point(713, 122); buttonCancel.Name = "buttonCancel"; buttonCancel.Size = new Size(75, 23); buttonCancel.TabIndex = 7; buttonCancel.Text = "Cancel"; buttonCancel.UseVisualStyleBackColor = true; buttonCancel.Click += ButtonCancel_Click; // // comboBoxClient // comboBoxClient.FormattingEnabled = true; comboBoxClient.Location = new Point(61, 35); comboBoxClient.Name = "comboBoxClient"; comboBoxClient.Size = new Size(727, 23); comboBoxClient.TabIndex = 8; // // labelClient // labelClient.AutoSize = true; labelClient.Location = new Point(12, 38); labelClient.Name = "labelClient"; labelClient.Size = new Size(41, 15); labelClient.TabIndex = 9; labelClient.Text = "Client:"; // // FormCreateOrder // AutoScaleDimensions = new SizeF(7F, 15F); AutoScaleMode = AutoScaleMode.Font; ClientSize = new Size(800, 153); Controls.Add(labelClient); Controls.Add(comboBoxClient); Controls.Add(buttonCancel); Controls.Add(buttonSave); Controls.Add(textBoxSum); Controls.Add(textBoxCount); Controls.Add(comboBoxCar); Controls.Add(labelSum); Controls.Add(labelCount); Controls.Add(labelCar); Name = "FormCreateOrder"; Text = "Create Order"; Load += FormCreateOrder_Load; ResumeLayout(false); PerformLayout(); } #endregion private Label labelCar; private Label labelCount; private Label labelSum; private ComboBox comboBoxCar; private TextBox textBoxCount; private TextBox textBoxSum; private Button buttonSave; private Button buttonCancel; private ComboBox comboBoxClient; private Label labelClient; } }