AccountingWarehouseProducts.../AccountingWarehouseProducts/AccountingWarehouseProductsView/FormShipment.Designer.cs

143 lines
5.4 KiB
C#
Raw Normal View History

2024-05-01 22:21:11 +04:00
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();
textBoxCount = new TextBox();
textBoxRecipient = new TextBox();
ButtonSave = new Button();
ButtonCancel = new Button();
2024-05-07 16:15:07 +04:00
dateTimePickerShipmentDate = new DateTimePicker();
2024-05-01 22:21:11 +04:00
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 = "Получатель:";
//
// 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;
//
2024-05-07 16:15:07 +04:00
// dateTimePickerShipmentDate
//
dateTimePickerShipmentDate.Location = new Point(145, 31);
dateTimePickerShipmentDate.Name = "dateTimePickerShipmentDate";
dateTimePickerShipmentDate.Size = new Size(182, 23);
dateTimePickerShipmentDate.TabIndex = 8;
//
2024-05-01 22:21:11 +04:00
// FormShipment
//
AutoScaleDimensions = new SizeF(7F, 15F);
AutoScaleMode = AutoScaleMode.Font;
ClientSize = new Size(385, 283);
2024-05-07 16:15:07 +04:00
Controls.Add(dateTimePickerShipmentDate);
2024-05-01 22:21:11 +04:00
Controls.Add(ButtonCancel);
Controls.Add(ButtonSave);
Controls.Add(textBoxRecipient);
Controls.Add(textBoxCount);
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 textBoxCount;
private TextBox textBoxRecipient;
private Button ButtonSave;
private Button ButtonCancel;
2024-05-07 16:15:07 +04:00
private DateTimePicker dateTimePickerShipmentDate;
2024-05-01 22:21:11 +04:00
}
}