121 lines
4.3 KiB
C#
121 lines
4.3 KiB
C#
namespace AccountingWarehouseProductsView
|
|
{
|
|
partial class FormOrderProduct
|
|
{
|
|
/// <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();
|
|
comboBoxProduct = new ComboBox();
|
|
textBoxCount = new TextBox();
|
|
buttonSave = new Button();
|
|
buttonCancel = new Button();
|
|
SuspendLayout();
|
|
//
|
|
// labelProduct
|
|
//
|
|
labelProduct.AutoSize = true;
|
|
labelProduct.Font = new Font("Segoe UI", 12F, FontStyle.Regular, GraphicsUnit.Point);
|
|
labelProduct.Location = new Point(21, 42);
|
|
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(21, 98);
|
|
labelCount.Name = "labelCount";
|
|
labelCount.Size = new Size(96, 21);
|
|
labelCount.TabIndex = 1;
|
|
labelCount.Text = "Количество:";
|
|
//
|
|
// comboBoxProduct
|
|
//
|
|
comboBoxProduct.DropDownStyle = ComboBoxStyle.DropDownList;
|
|
comboBoxProduct.FormattingEnabled = true;
|
|
comboBoxProduct.Location = new Point(101, 44);
|
|
comboBoxProduct.Name = "comboBoxProduct";
|
|
comboBoxProduct.Size = new Size(283, 23);
|
|
comboBoxProduct.TabIndex = 2;
|
|
//
|
|
// textBoxCount
|
|
//
|
|
textBoxCount.Location = new Point(128, 96);
|
|
textBoxCount.Name = "textBoxCount";
|
|
textBoxCount.Size = new Size(256, 23);
|
|
textBoxCount.TabIndex = 3;
|
|
//
|
|
// buttonSave
|
|
//
|
|
buttonSave.Location = new Point(71, 144);
|
|
buttonSave.Name = "buttonSave";
|
|
buttonSave.Size = new Size(114, 49);
|
|
buttonSave.TabIndex = 4;
|
|
buttonSave.Text = "Сохранить";
|
|
buttonSave.UseVisualStyleBackColor = true;
|
|
buttonSave.Click += buttonSave_Click;
|
|
//
|
|
// buttonCancel
|
|
//
|
|
buttonCancel.Location = new Point(240, 144);
|
|
buttonCancel.Name = "buttonCancel";
|
|
buttonCancel.Size = new Size(114, 49);
|
|
buttonCancel.TabIndex = 5;
|
|
buttonCancel.Text = "Отмена";
|
|
buttonCancel.UseVisualStyleBackColor = true;
|
|
buttonCancel.Click += buttonCancel_Click;
|
|
//
|
|
// FormOrderProduct
|
|
//
|
|
AutoScaleDimensions = new SizeF(7F, 15F);
|
|
AutoScaleMode = AutoScaleMode.Font;
|
|
ClientSize = new Size(437, 218);
|
|
Controls.Add(buttonCancel);
|
|
Controls.Add(buttonSave);
|
|
Controls.Add(textBoxCount);
|
|
Controls.Add(comboBoxProduct);
|
|
Controls.Add(labelCount);
|
|
Controls.Add(labelProduct);
|
|
Name = "FormOrderProduct";
|
|
Text = "Заказ продукта";
|
|
ResumeLayout(false);
|
|
PerformLayout();
|
|
}
|
|
|
|
#endregion
|
|
|
|
private Label labelProduct;
|
|
private Label labelCount;
|
|
private ComboBox comboBoxProduct;
|
|
private TextBox textBoxCount;
|
|
private Button buttonSave;
|
|
private Button buttonCancel;
|
|
}
|
|
} |