143 lines
5.3 KiB
C#
143 lines
5.3 KiB
C#
|
namespace AccountingWarehouseProductsView
|
|||
|
{
|
|||
|
partial class FormShipment
|
|||
|
{
|
|||
|
/// <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()
|
|||
|
{
|
|||
|
labelShipmentDate = new Label();
|
|||
|
labelCount = new Label();
|
|||
|
labelRecipient = new Label();
|
|||
|
textBoxShipmentDate = new TextBox();
|
|||
|
textBoxCount = new TextBox();
|
|||
|
textBoxRecipient = new TextBox();
|
|||
|
ButtonSave = new Button();
|
|||
|
ButtonCancel = new Button();
|
|||
|
SuspendLayout();
|
|||
|
//
|
|||
|
// labelShipmentDate
|
|||
|
//
|
|||
|
labelShipmentDate.AutoSize = true;
|
|||
|
labelShipmentDate.Font = new Font("Segoe UI", 12F, FontStyle.Regular, GraphicsUnit.Point);
|
|||
|
labelShipmentDate.Location = new Point(17, 31);
|
|||
|
labelShipmentDate.Name = "labelShipmentDate";
|
|||
|
labelShipmentDate.Size = new Size(114, 21);
|
|||
|
labelShipmentDate.TabIndex = 0;
|
|||
|
labelShipmentDate.Text = "Дата отгрузки:";
|
|||
|
//
|
|||
|
// labelCount
|
|||
|
//
|
|||
|
labelCount.AutoSize = true;
|
|||
|
labelCount.Font = new Font("Segoe UI", 12F, FontStyle.Regular, GraphicsUnit.Point);
|
|||
|
labelCount.Location = new Point(17, 77);
|
|||
|
labelCount.Name = "labelCount";
|
|||
|
labelCount.Size = new Size(96, 21);
|
|||
|
labelCount.TabIndex = 1;
|
|||
|
labelCount.Text = "Количество:";
|
|||
|
//
|
|||
|
// labelRecipient
|
|||
|
//
|
|||
|
labelRecipient.AutoSize = true;
|
|||
|
labelRecipient.Font = new Font("Segoe UI", 12F, FontStyle.Regular, GraphicsUnit.Point);
|
|||
|
labelRecipient.Location = new Point(17, 122);
|
|||
|
labelRecipient.Name = "labelRecipient";
|
|||
|
labelRecipient.Size = new Size(97, 21);
|
|||
|
labelRecipient.TabIndex = 2;
|
|||
|
labelRecipient.Text = "Получатель:";
|
|||
|
//
|
|||
|
// textBoxShipmentDate
|
|||
|
//
|
|||
|
textBoxShipmentDate.Location = new Point(145, 33);
|
|||
|
textBoxShipmentDate.Name = "textBoxShipmentDate";
|
|||
|
textBoxShipmentDate.Size = new Size(182, 23);
|
|||
|
textBoxShipmentDate.TabIndex = 3;
|
|||
|
//
|
|||
|
// textBoxCount
|
|||
|
//
|
|||
|
textBoxCount.Location = new Point(145, 77);
|
|||
|
textBoxCount.Name = "textBoxCount";
|
|||
|
textBoxCount.Size = new Size(182, 23);
|
|||
|
textBoxCount.TabIndex = 4;
|
|||
|
//
|
|||
|
// textBoxRecipient
|
|||
|
//
|
|||
|
textBoxRecipient.Location = new Point(145, 124);
|
|||
|
textBoxRecipient.Name = "textBoxRecipient";
|
|||
|
textBoxRecipient.Size = new Size(182, 23);
|
|||
|
textBoxRecipient.TabIndex = 5;
|
|||
|
//
|
|||
|
// ButtonSave
|
|||
|
//
|
|||
|
ButtonSave.Location = new Point(30, 184);
|
|||
|
ButtonSave.Name = "ButtonSave";
|
|||
|
ButtonSave.Size = new Size(137, 52);
|
|||
|
ButtonSave.TabIndex = 6;
|
|||
|
ButtonSave.Text = "Сохранить";
|
|||
|
ButtonSave.UseVisualStyleBackColor = true;
|
|||
|
ButtonSave.Click += buttonSave_Click;
|
|||
|
//
|
|||
|
// ButtonCancel
|
|||
|
//
|
|||
|
ButtonCancel.Location = new Point(203, 184);
|
|||
|
ButtonCancel.Name = "ButtonCancel";
|
|||
|
ButtonCancel.Size = new Size(137, 52);
|
|||
|
ButtonCancel.TabIndex = 7;
|
|||
|
ButtonCancel.Text = "Отмена";
|
|||
|
ButtonCancel.UseVisualStyleBackColor = true;
|
|||
|
ButtonCancel.Click += buttonCancel_Click;
|
|||
|
//
|
|||
|
// FormShipment
|
|||
|
//
|
|||
|
AutoScaleDimensions = new SizeF(7F, 15F);
|
|||
|
AutoScaleMode = AutoScaleMode.Font;
|
|||
|
ClientSize = new Size(385, 283);
|
|||
|
Controls.Add(ButtonCancel);
|
|||
|
Controls.Add(ButtonSave);
|
|||
|
Controls.Add(textBoxRecipient);
|
|||
|
Controls.Add(textBoxCount);
|
|||
|
Controls.Add(textBoxShipmentDate);
|
|||
|
Controls.Add(labelRecipient);
|
|||
|
Controls.Add(labelCount);
|
|||
|
Controls.Add(labelShipmentDate);
|
|||
|
Name = "FormShipment";
|
|||
|
Text = "Отгрузка";
|
|||
|
Load += FormShipment_Load;
|
|||
|
ResumeLayout(false);
|
|||
|
PerformLayout();
|
|||
|
}
|
|||
|
|
|||
|
#endregion
|
|||
|
|
|||
|
private Label labelShipmentDate;
|
|||
|
private Label labelCount;
|
|||
|
private Label labelRecipient;
|
|||
|
private TextBox textBoxShipmentDate;
|
|||
|
private TextBox textBoxCount;
|
|||
|
private TextBox textBoxRecipient;
|
|||
|
private Button ButtonSave;
|
|||
|
private Button ButtonCancel;
|
|||
|
}
|
|||
|
}
|