namespace ConstructionCompanyView { partial class FormMaterialOrder { /// /// 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.label1 = new System.Windows.Forms.Label(); this.label2 = new System.Windows.Forms.Label(); this.label3 = new System.Windows.Forms.Label(); this.comboBoxMaterial = new System.Windows.Forms.ComboBox(); this.textBoxQuantity = new System.Windows.Forms.TextBox(); this.comboBoxOrder = new System.Windows.Forms.ComboBox(); this.buttonCreate = new System.Windows.Forms.Button(); this.buttonCancel = new System.Windows.Forms.Button(); this.labelQuantity = new System.Windows.Forms.Label(); this.SuspendLayout(); // // label1 // this.label1.AutoSize = true; this.label1.Location = new System.Drawing.Point(12, 9); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(50, 20); this.label1.TabIndex = 0; this.label1.Text = "Заказ:"; // // label2 // this.label2.AutoSize = true; this.label2.Location = new System.Drawing.Point(12, 55); this.label2.Name = "label2"; this.label2.Size = new System.Drawing.Size(81, 20); this.label2.TabIndex = 1; this.label2.Text = "Материал:"; // // label3 // this.label3.AutoSize = true; this.label3.Location = new System.Drawing.Point(12, 138); this.label3.Name = "label3"; this.label3.Size = new System.Drawing.Size(93, 20); this.label3.TabIndex = 2; this.label3.Text = "Количество:"; // // comboBoxMaterial // this.comboBoxMaterial.FormattingEnabled = true; this.comboBoxMaterial.Location = new System.Drawing.Point(142, 55); this.comboBoxMaterial.Name = "comboBoxMaterial"; this.comboBoxMaterial.Size = new System.Drawing.Size(248, 28); this.comboBoxMaterial.TabIndex = 3; this.comboBoxMaterial.SelectedValueChanged += new System.EventHandler(this.comboBoxMaterial_SelectedValueChanged); // // textBoxQuantity // this.textBoxQuantity.Location = new System.Drawing.Point(142, 135); this.textBoxQuantity.Name = "textBoxQuantity"; this.textBoxQuantity.Size = new System.Drawing.Size(120, 27); this.textBoxQuantity.TabIndex = 4; // // comboBoxOrder // this.comboBoxOrder.FormattingEnabled = true; this.comboBoxOrder.Location = new System.Drawing.Point(142, 9); this.comboBoxOrder.Name = "comboBoxOrder"; this.comboBoxOrder.Size = new System.Drawing.Size(248, 28); this.comboBoxOrder.TabIndex = 5; // // buttonCreate // this.buttonCreate.Location = new System.Drawing.Point(142, 194); this.buttonCreate.Name = "buttonCreate"; this.buttonCreate.Size = new System.Drawing.Size(94, 29); this.buttonCreate.TabIndex = 6; this.buttonCreate.Text = "Добавить"; this.buttonCreate.UseVisualStyleBackColor = true; this.buttonCreate.Click += new System.EventHandler(this.buttonCreate_Click); // // buttonCancel // this.buttonCancel.Location = new System.Drawing.Point(296, 194); this.buttonCancel.Name = "buttonCancel"; this.buttonCancel.Size = new System.Drawing.Size(94, 29); this.buttonCancel.TabIndex = 7; this.buttonCancel.Text = "Отмена"; this.buttonCancel.UseVisualStyleBackColor = true; this.buttonCancel.Click += new System.EventHandler(this.buttonCancel_Click); // // labelQuantity // this.labelQuantity.AutoSize = true; this.labelQuantity.Location = new System.Drawing.Point(12, 95); this.labelQuantity.Name = "labelQuantity"; this.labelQuantity.Size = new System.Drawing.Size(134, 20); this.labelQuantity.TabIndex = 8; this.labelQuantity.Text = "Едениц на складе:"; // // FormMaterialOrder // this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 20F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(408, 233); this.Controls.Add(this.labelQuantity); this.Controls.Add(this.buttonCancel); this.Controls.Add(this.buttonCreate); this.Controls.Add(this.comboBoxOrder); this.Controls.Add(this.textBoxQuantity); this.Controls.Add(this.comboBoxMaterial); this.Controls.Add(this.label3); this.Controls.Add(this.label2); this.Controls.Add(this.label1); this.Name = "FormMaterialOrder"; this.Text = "Отправка материалов на заказ"; this.Load += new System.EventHandler(this.FormMaterialOrder_Load); this.ResumeLayout(false); this.PerformLayout(); } #endregion private Label label1; private Label label2; private Label label3; private ComboBox comboBoxMaterial; private TextBox textBoxQuantity; private ComboBox comboBoxOrder; private Button buttonCreate; private Button buttonCancel; private Label labelQuantity; } }