AccountingWarehouseProducts.../AccountingWarehouseProducts/AccountingWarehouseProductsView/FormCreateOrder.Designer.cs

173 lines
6.5 KiB
C#

namespace AccountingWarehouseProductsView
{
partial class FormCreateOrder
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Clean up any resources being used.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
labelProduct = new Label();
labelCount = new Label();
labelSum = new Label();
comboBoxProduct = new ComboBox();
textBoxCount = new TextBox();
textBoxSum = new TextBox();
buttonSave = new Button();
buttonCancel = new Button();
labelSupplier = new Label();
comboBoxSupplier = new ComboBox();
SuspendLayout();
//
// labelProduct
//
labelProduct.AutoSize = true;
labelProduct.Font = new Font("Segoe UI", 12F, FontStyle.Regular, GraphicsUnit.Point);
labelProduct.Location = new Point(38, 66);
labelProduct.Name = "labelProduct";
labelProduct.Size = new Size(74, 21);
labelProduct.TabIndex = 0;
labelProduct.Text = "Продукт:";
//
// labelCount
//
labelCount.AutoSize = true;
labelCount.Font = new Font("Segoe UI", 12F, FontStyle.Regular, GraphicsUnit.Point);
labelCount.Location = new Point(37, 23);
labelCount.Name = "labelCount";
labelCount.Size = new Size(96, 21);
labelCount.TabIndex = 1;
labelCount.Text = "Количество:";
//
// labelSum
//
labelSum.AutoSize = true;
labelSum.Font = new Font("Segoe UI", 12F, FontStyle.Regular, GraphicsUnit.Point);
labelSum.Location = new Point(37, 164);
labelSum.Name = "labelSum";
labelSum.Size = new Size(61, 21);
labelSum.TabIndex = 2;
labelSum.Text = "Сумма:";
//
// comboBoxProduct
//
comboBoxProduct.DropDownStyle = ComboBoxStyle.DropDownList;
comboBoxProduct.FormattingEnabled = true;
comboBoxProduct.Location = new Point(118, 68);
comboBoxProduct.Name = "comboBoxProduct";
comboBoxProduct.Size = new Size(236, 23);
comboBoxProduct.TabIndex = 3;
comboBoxProduct.SelectedIndexChanged += comboBoxProduct_SelectedIndexChanged;
//
// textBoxCount
//
textBoxCount.Location = new Point(139, 25);
textBoxCount.Name = "textBoxCount";
textBoxCount.Size = new Size(215, 23);
textBoxCount.TabIndex = 4;
//
// textBoxSum
//
textBoxSum.Location = new Point(113, 164);
textBoxSum.Name = "textBoxSum";
textBoxSum.ReadOnly = true;
textBoxSum.Size = new Size(241, 23);
textBoxSum.TabIndex = 5;
textBoxSum.TextChanged += textBoxCount_TextChanged;
//
// buttonSave
//
buttonSave.Location = new Point(54, 221);
buttonSave.Name = "buttonSave";
buttonSave.Size = new Size(127, 49);
buttonSave.TabIndex = 6;
buttonSave.Text = "Сохранить";
buttonSave.UseVisualStyleBackColor = true;
buttonSave.Click += ButtonSave_Click;
//
// buttonCancel
//
buttonCancel.Location = new Point(222, 221);
buttonCancel.Name = "buttonCancel";
buttonCancel.Size = new Size(127, 49);
buttonCancel.TabIndex = 7;
buttonCancel.Text = "Отмена";
buttonCancel.UseVisualStyleBackColor = true;
buttonCancel.Click += ButtonCancel_Click;
//
// labelSupplier
//
labelSupplier.AutoSize = true;
labelSupplier.Font = new Font("Segoe UI", 12F, FontStyle.Regular, GraphicsUnit.Point);
labelSupplier.Location = new Point(37, 111);
labelSupplier.Name = "labelSupplier";
labelSupplier.Size = new Size(93, 21);
labelSupplier.TabIndex = 8;
labelSupplier.Text = "Поставщик:";
//
// comboBoxSupplier
//
comboBoxSupplier.DropDownStyle = ComboBoxStyle.DropDownList;
comboBoxSupplier.FormattingEnabled = true;
comboBoxSupplier.Location = new Point(139, 113);
comboBoxSupplier.Name = "comboBoxSupplier";
comboBoxSupplier.Size = new Size(215, 23);
comboBoxSupplier.TabIndex = 9;
//
// FormCreateOrder
//
AutoScaleDimensions = new SizeF(7F, 15F);
AutoScaleMode = AutoScaleMode.Font;
ClientSize = new Size(444, 320);
Controls.Add(comboBoxSupplier);
Controls.Add(labelSupplier);
Controls.Add(buttonCancel);
Controls.Add(buttonSave);
Controls.Add(textBoxSum);
Controls.Add(textBoxCount);
Controls.Add(comboBoxProduct);
Controls.Add(labelSum);
Controls.Add(labelCount);
Controls.Add(labelProduct);
Name = "FormCreateOrder";
Text = "Создание заказа";
Load += FormCreateOrder_Load;
ResumeLayout(false);
PerformLayout();
}
#endregion
private Label labelProduct;
private Label labelCount;
private Label labelSum;
private ComboBox comboBoxProduct;
private TextBox textBoxCount;
private TextBox textBoxSum;
private Button buttonSave;
private Button buttonCancel;
private Label labelSupplier;
private ComboBox comboBoxSupplier;
}
}