namespace MotorPlantView
{
    partial class FormCreateOrder
    {
        private System.ComponentModel.IContainer components = null;
        protected override void Dispose(bool disposing)
        {
            if (disposing && (components != null))
            {
                components.Dispose();
            }
            base.Dispose(disposing);
        }
        private void InitializeComponent()
        {
            labelEngine = new Label();
            labelCount = new Label();
            labelSum = new Label();
            comboBoxEngine = new ComboBox();
            textBoxCount = new TextBox();
            textBoxSum = new TextBox();
            buttonSave = new Button();
            buttonCancel = new Button();
            SuspendLayout();
            // 
            // labelEngine
            // 
            labelEngine.AutoSize = true;
            labelEngine.Location = new Point(12, 23);
            labelEngine.Name = "labelEngine";
            labelEngine.Size = new Size(61, 15);
            labelEngine.TabIndex = 0;
            labelEngine.Text = "Изделие:";
            // 
            // labelCount
            // 
            labelCount.AutoSize = true;
            labelCount.Location = new Point(12, 53);
            labelCount.Name = "labelCount";
            labelCount.Size = new Size(79, 15);
            labelCount.TabIndex = 1;
            labelCount.Text = "Количество:";
            // 
            // labelSum
            // 
            labelSum.AutoSize = true;
            labelSum.Location = new Point(12, 82);
            labelSum.Name = "labelSum";
            labelSum.Size = new Size(47, 15);
            labelSum.TabIndex = 2;
            labelSum.Text = "Сумма:";
            // 
            // comboBoxEngine
            // 
            comboBoxEngine.BackColor = SystemColors.Window;
            comboBoxEngine.DropDownStyle = ComboBoxStyle.DropDownList;
            comboBoxEngine.FormattingEnabled = true;
            comboBoxEngine.Location = new Point(93, 20);
            comboBoxEngine.Name = "comboBoxEngine";
            comboBoxEngine.Size = new Size(238, 23);
            comboBoxEngine.TabIndex = 3;
            comboBoxEngine.SelectedIndexChanged += ComboBoxEngine_SelectedIndexChanged;
            // 
            // textBoxCount
            // 
            textBoxCount.Location = new Point(93, 50);
            textBoxCount.Name = "textBoxCount";
            textBoxCount.Size = new Size(238, 23);
            textBoxCount.TabIndex = 4;
            textBoxCount.TextChanged += TextBoxCount_TextChanged;
            // 
            // textBoxSum
            // 
            textBoxSum.Location = new Point(93, 79);
            textBoxSum.Name = "textBoxSum";
            textBoxSum.ReadOnly = true;
            textBoxSum.Size = new Size(238, 23);
            textBoxSum.TabIndex = 5;
            // 
            // buttonSave
            // 
            buttonSave.Location = new Point(162, 114);
            buttonSave.Name = "buttonSave";
            buttonSave.Size = new Size(88, 23);
            buttonSave.TabIndex = 6;
            buttonSave.Text = "Сохранить";
            buttonSave.UseVisualStyleBackColor = true;
            buttonSave.Click += ButtonSave_Click;
            // 
            // buttonCancel
            // 
            buttonCancel.Location = new Point(256, 114);
            buttonCancel.Name = "buttonCancel";
            buttonCancel.Size = new Size(75, 23);
            buttonCancel.TabIndex = 7;
            buttonCancel.Text = "Отмена";
            buttonCancel.UseVisualStyleBackColor = true;
            buttonCancel.Click += ButtonCancel_Click;
            // 
            // FormCreateOrder
            // 
            AutoScaleDimensions = new SizeF(7F, 15F);
            AutoScaleMode = AutoScaleMode.Font;
            ClientSize = new Size(346, 149);
            Controls.Add(buttonCancel);
            Controls.Add(buttonSave);
            Controls.Add(textBoxSum);
            Controls.Add(textBoxCount);
            Controls.Add(comboBoxEngine);
            Controls.Add(labelSum);
            Controls.Add(labelCount);
            Controls.Add(labelEngine);
            Name = "FormCreateOrder";
            Text = "Заказ";
            Load += FormCreateOrder_Load;
            ResumeLayout(false);
            PerformLayout();
        }
        private Label labelEngine;
        private Label labelCount;
        private Label labelSum;
        private ComboBox comboBoxEngine;
        private TextBox textBoxCount;
        private TextBox textBoxSum;
        private Button buttonSave;
        private Button buttonCancel;
    }
}