PIbd-21__Kryukov_A.I._Typog.../TypographyView/FormMakeShipment.Designer.cs

142 lines
4.9 KiB
C#
Raw Normal View History

2024-02-27 21:55:35 +04:00
namespace TypographyView
2024-02-27 21:03:00 +04:00
{
partial class FormMakeShipment
{
/// <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()
{
labelShop = new Label();
labelPrinted = new Label();
2024-02-27 21:55:35 +04:00
labelCount = new Label();
2024-02-27 21:03:00 +04:00
comboBoxShop = new ComboBox();
comboBoxPrinted = new ComboBox();
textBoxCount = new TextBox();
buttonSave = new Button();
buttonCancel = new Button();
SuspendLayout();
//
// labelShop
//
labelShop.AutoSize = true;
2024-02-27 21:55:35 +04:00
labelShop.Location = new Point(12, 22);
2024-02-27 21:03:00 +04:00
labelShop.Name = "labelShop";
2024-02-27 21:55:35 +04:00
labelShop.Size = new Size(76, 20);
2024-02-27 21:03:00 +04:00
labelShop.TabIndex = 0;
2024-02-27 21:55:35 +04:00
labelShop.Text = "Магазин :";
2024-02-27 21:03:00 +04:00
//
// labelPrinted
//
labelPrinted.AutoSize = true;
2024-02-27 21:55:35 +04:00
labelPrinted.Location = new Point(12, 57);
2024-02-27 21:03:00 +04:00
labelPrinted.Name = "labelPrinted";
2024-02-27 21:55:35 +04:00
labelPrinted.Size = new Size(75, 20);
2024-02-27 21:03:00 +04:00
labelPrinted.TabIndex = 1;
2024-02-27 21:55:35 +04:00
labelPrinted.Text = "Изделие :";
2024-02-27 21:03:00 +04:00
//
2024-02-27 21:55:35 +04:00
// labelCount
2024-02-27 21:03:00 +04:00
//
2024-02-27 21:55:35 +04:00
labelCount.AutoSize = true;
labelCount.Location = new Point(12, 96);
labelCount.Name = "labelCount";
labelCount.Size = new Size(97, 20);
labelCount.TabIndex = 2;
labelCount.Text = "Количество :";
2024-02-27 21:03:00 +04:00
//
// comboBoxShop
//
comboBoxShop.FormattingEnabled = true;
2024-02-27 21:55:35 +04:00
comboBoxShop.Location = new Point(116, 19);
2024-02-27 21:03:00 +04:00
comboBoxShop.Name = "comboBoxShop";
2024-02-27 21:55:35 +04:00
comboBoxShop.Size = new Size(247, 28);
2024-02-27 21:03:00 +04:00
comboBoxShop.TabIndex = 3;
//
// comboBoxPrinted
//
comboBoxPrinted.FormattingEnabled = true;
2024-02-27 21:55:35 +04:00
comboBoxPrinted.Location = new Point(116, 54);
2024-02-27 21:03:00 +04:00
comboBoxPrinted.Name = "comboBoxPrinted";
2024-02-27 21:55:35 +04:00
comboBoxPrinted.Size = new Size(247, 28);
2024-02-27 21:03:00 +04:00
comboBoxPrinted.TabIndex = 4;
//
// textBoxCount
//
2024-02-27 21:55:35 +04:00
textBoxCount.Location = new Point(116, 93);
2024-02-27 21:03:00 +04:00
textBoxCount.Name = "textBoxCount";
2024-02-27 21:55:35 +04:00
textBoxCount.Size = new Size(247, 27);
2024-02-27 21:03:00 +04:00
textBoxCount.TabIndex = 5;
//
// buttonSave
//
2024-02-27 21:55:35 +04:00
buttonSave.Location = new Point(116, 126);
2024-02-27 21:03:00 +04:00
buttonSave.Name = "buttonSave";
2024-02-27 21:55:35 +04:00
buttonSave.Size = new Size(102, 43);
2024-02-27 21:03:00 +04:00
buttonSave.TabIndex = 6;
buttonSave.Text = "Сохранить";
buttonSave.UseVisualStyleBackColor = true;
buttonSave.Click += ButtonSave_Click;
//
// buttonCancel
//
2024-02-27 21:55:35 +04:00
buttonCancel.Location = new Point(261, 126);
2024-02-27 21:03:00 +04:00
buttonCancel.Name = "buttonCancel";
2024-02-27 21:55:35 +04:00
buttonCancel.Size = new Size(102, 43);
2024-02-27 21:03:00 +04:00
buttonCancel.TabIndex = 7;
buttonCancel.Text = "Отмена";
buttonCancel.UseVisualStyleBackColor = true;
buttonCancel.Click += ButtonCancel_Click;
//
2024-02-27 21:55:35 +04:00
// FormMakeShipment
2024-02-27 21:03:00 +04:00
//
AutoScaleDimensions = new SizeF(8F, 20F);
AutoScaleMode = AutoScaleMode.Font;
2024-02-27 21:55:35 +04:00
ClientSize = new Size(431, 206);
2024-02-27 21:03:00 +04:00
Controls.Add(buttonCancel);
Controls.Add(buttonSave);
Controls.Add(textBoxCount);
Controls.Add(comboBoxPrinted);
Controls.Add(comboBoxShop);
2024-02-27 21:55:35 +04:00
Controls.Add(labelCount);
2024-02-27 21:03:00 +04:00
Controls.Add(labelPrinted);
Controls.Add(labelShop);
2024-02-27 21:55:35 +04:00
Name = "FormMakeShipment";
2024-02-27 21:03:00 +04:00
Text = "Пополнение магазина";
Load += FormMakeShipment_Load;
ResumeLayout(false);
PerformLayout();
}
#endregion
private Label labelShop;
private Label labelPrinted;
2024-02-27 21:55:35 +04:00
private Label labelCount;
2024-02-27 21:03:00 +04:00
private ComboBox comboBoxShop;
private ComboBox comboBoxPrinted;
private TextBox textBoxCount;
private Button buttonSave;
private Button buttonCancel;
}
}