PIbd-21__Kryukov_A.I._Typog.../TypographyView/FormMakeShipment.Designer.cs
Алексей Крюков e8047232f6 готовая лаба 1
2024-02-27 21:55:35 +04:00

142 lines
4.9 KiB
C#

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