148 lines
4.1 KiB
C#
148 lines
4.1 KiB
C#
namespace FishFactoryView
|
|
{
|
|
partial class FormCreateSupply
|
|
{
|
|
/// <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()
|
|
{
|
|
comboBoxShop = new ComboBox();
|
|
labelShop = new Label();
|
|
labelCanned = new Label();
|
|
comboBoxCanned = new ComboBox();
|
|
labelCount = new Label();
|
|
textBoxCount = new TextBox();
|
|
buttonCancel = new Button();
|
|
buttonSave = new Button();
|
|
SuspendLayout();
|
|
//
|
|
// comboBoxShop
|
|
//
|
|
comboBoxShop.FormattingEnabled = true;
|
|
comboBoxShop.Location = new Point(101, 9);
|
|
comboBoxShop.Margin = new Padding(3, 2, 3, 2);
|
|
comboBoxShop.Name = "comboBoxShop";
|
|
comboBoxShop.Size = new Size(302, 23);
|
|
comboBoxShop.TabIndex = 0;
|
|
//
|
|
// labelShop
|
|
//
|
|
labelShop.AutoSize = true;
|
|
labelShop.Location = new Point(10, 11);
|
|
labelShop.Name = "labelShop";
|
|
labelShop.Size = new Size(60, 15);
|
|
labelShop.TabIndex = 1;
|
|
labelShop.Text = "Магазин: ";
|
|
//
|
|
// labelCanned
|
|
//
|
|
labelCanned.AutoSize = true;
|
|
labelCanned.Location = new Point(10, 37);
|
|
labelCanned.Name = "labelCanned";
|
|
labelCanned.Size = new Size(59, 15);
|
|
labelCanned.TabIndex = 2;
|
|
labelCanned.Text = "Изделие: ";
|
|
//
|
|
// comboBoxCanned
|
|
//
|
|
comboBoxCanned.FormattingEnabled = true;
|
|
comboBoxCanned.Location = new Point(101, 34);
|
|
comboBoxCanned.Margin = new Padding(3, 2, 3, 2);
|
|
comboBoxCanned.Name = "comboBoxCanned";
|
|
comboBoxCanned.Size = new Size(302, 23);
|
|
comboBoxCanned.TabIndex = 3;
|
|
//
|
|
// labelCount
|
|
//
|
|
labelCount.AutoSize = true;
|
|
labelCount.Location = new Point(10, 62);
|
|
labelCount.Name = "labelCount";
|
|
labelCount.Size = new Size(78, 15);
|
|
labelCount.TabIndex = 4;
|
|
labelCount.Text = "Количество: ";
|
|
//
|
|
// textBoxCount
|
|
//
|
|
textBoxCount.Location = new Point(101, 60);
|
|
textBoxCount.Margin = new Padding(3, 2, 3, 2);
|
|
textBoxCount.Name = "textBoxCount";
|
|
textBoxCount.Size = new Size(302, 23);
|
|
textBoxCount.TabIndex = 5;
|
|
//
|
|
// buttonCancel
|
|
//
|
|
buttonCancel.Location = new Point(262, 85);
|
|
buttonCancel.Margin = new Padding(3, 2, 3, 2);
|
|
buttonCancel.Name = "buttonCancel";
|
|
buttonCancel.Size = new Size(102, 29);
|
|
buttonCancel.TabIndex = 6;
|
|
buttonCancel.Text = "Отмена";
|
|
buttonCancel.UseVisualStyleBackColor = true;
|
|
buttonCancel.Click += ButtonCancel_Click;
|
|
//
|
|
// buttonSave
|
|
//
|
|
buttonSave.Location = new Point(147, 85);
|
|
buttonSave.Margin = new Padding(3, 2, 3, 2);
|
|
buttonSave.Name = "buttonSave";
|
|
buttonSave.Size = new Size(102, 29);
|
|
buttonSave.TabIndex = 7;
|
|
buttonSave.Text = "Сохранить";
|
|
buttonSave.UseVisualStyleBackColor = true;
|
|
buttonSave.Click += ButtonSave_Click;
|
|
//
|
|
// FormCreateSupply
|
|
//
|
|
AutoScaleDimensions = new SizeF(7F, 15F);
|
|
AutoScaleMode = AutoScaleMode.Font;
|
|
ClientSize = new Size(412, 123);
|
|
Controls.Add(buttonSave);
|
|
Controls.Add(buttonCancel);
|
|
Controls.Add(textBoxCount);
|
|
Controls.Add(labelCount);
|
|
Controls.Add(comboBoxCanned);
|
|
Controls.Add(labelCanned);
|
|
Controls.Add(labelShop);
|
|
Controls.Add(comboBoxShop);
|
|
Margin = new Padding(3, 2, 3, 2);
|
|
Name = "FormCreateSupply";
|
|
Text = "Создание поставки";
|
|
Load += FormCreateSupply_Load;
|
|
ResumeLayout(false);
|
|
PerformLayout();
|
|
}
|
|
|
|
#endregion
|
|
|
|
private ComboBox comboBoxShop;
|
|
private Label labelShop;
|
|
private Label labelCanned;
|
|
private ComboBox comboBoxCanned;
|
|
private Label labelCount;
|
|
private TextBox textBoxCount;
|
|
private Button buttonCancel;
|
|
private Button buttonSave;
|
|
}
|
|
} |