namespace SecuritySystemView { 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() { this.labelManufacture = new System.Windows.Forms.Label(); this.comboBoxManufacture = new System.Windows.Forms.ComboBox(); this.labelCount = new System.Windows.Forms.Label(); this.textBoxCount = new System.Windows.Forms.TextBox(); this.labelSum = new System.Windows.Forms.Label(); this.textBoxSum = new System.Windows.Forms.TextBox(); this.buttonCancel = new System.Windows.Forms.Button(); this.buttonSave = new System.Windows.Forms.Button(); this.SuspendLayout(); // // labelManufacture // this.labelManufacture.AutoSize = true; this.labelManufacture.Location = new System.Drawing.Point(12, 15); this.labelManufacture.Name = "labelManufacture"; this.labelManufacture.Size = new System.Drawing.Size(75, 20); this.labelManufacture.TabIndex = 0; this.labelManufacture.Text = "Изделие: "; // // comboBoxManufacture // this.comboBoxManufacture.FormattingEnabled = true; this.comboBoxManufacture.Location = new System.Drawing.Point(115, 12); this.comboBoxManufacture.Name = "comboBoxManufacture"; this.comboBoxManufacture.Size = new System.Drawing.Size(358, 28); this.comboBoxManufacture.TabIndex = 1; this.comboBoxManufacture.SelectedIndexChanged += new System.EventHandler(this.ComboBoxManufacture_SelectedIndexChanged); // // labelCount // this.labelCount.AutoSize = true; this.labelCount.Location = new System.Drawing.Point(12, 49); this.labelCount.Name = "labelCount"; this.labelCount.Size = new System.Drawing.Size(97, 20); this.labelCount.TabIndex = 2; this.labelCount.Text = "Количество: "; // // textBoxCount // this.textBoxCount.Location = new System.Drawing.Point(115, 46); this.textBoxCount.Name = "textBoxCount"; this.textBoxCount.Size = new System.Drawing.Size(358, 27); this.textBoxCount.TabIndex = 3; this.textBoxCount.TextChanged += new System.EventHandler(this.TextBoxCount_TextChanged); // // labelSum // this.labelSum.AutoSize = true; this.labelSum.Location = new System.Drawing.Point(12, 80); this.labelSum.Name = "labelSum"; this.labelSum.Size = new System.Drawing.Size(62, 20); this.labelSum.TabIndex = 4; this.labelSum.Text = "Сумма: "; // // textBoxSum // this.textBoxSum.Location = new System.Drawing.Point(115, 80); this.textBoxSum.Name = "textBoxSum"; this.textBoxSum.ReadOnly = true; this.textBoxSum.Size = new System.Drawing.Size(358, 27); this.textBoxSum.TabIndex = 5; // // buttonCancel // this.buttonCancel.Location = new System.Drawing.Point(337, 113); this.buttonCancel.Name = "buttonCancel"; this.buttonCancel.Size = new System.Drawing.Size(110, 32); this.buttonCancel.TabIndex = 6; this.buttonCancel.Text = "Отмена"; this.buttonCancel.UseVisualStyleBackColor = true; this.buttonCancel.Click += new System.EventHandler(this.ButtonCancel_Click); // // buttonSave // this.buttonSave.Location = new System.Drawing.Point(221, 113); this.buttonSave.Name = "buttonSave"; this.buttonSave.Size = new System.Drawing.Size(110, 32); this.buttonSave.TabIndex = 7; this.buttonSave.Text = "Сохранить"; this.buttonSave.UseVisualStyleBackColor = true; this.buttonSave.Click += new System.EventHandler(this.ButtonSave_Click); // // FormCreateOrder // this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 20F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(485, 158); this.Controls.Add(this.buttonSave); this.Controls.Add(this.buttonCancel); this.Controls.Add(this.textBoxSum); this.Controls.Add(this.labelSum); this.Controls.Add(this.textBoxCount); this.Controls.Add(this.labelCount); this.Controls.Add(this.comboBoxManufacture); this.Controls.Add(this.labelManufacture); this.Name = "FormCreateOrder"; this.Text = "Заказ"; this.Load += new System.EventHandler(this.FormCreateOrder_Load); this.ResumeLayout(false); this.PerformLayout(); } #endregion private Label labelManufacture; private ComboBox comboBoxManufacture; private Label labelCount; private TextBox textBoxCount; private Label labelSum; private TextBox textBoxSum; private Button buttonCancel; private Button buttonSave; } }