143 lines
5.4 KiB
C#
143 lines
5.4 KiB
C#
namespace AccountingWarehouseProductsView
|
|
{
|
|
partial class FormStand
|
|
{
|
|
/// <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()
|
|
{
|
|
labelDeliveryDate = new Label();
|
|
labelCount = new Label();
|
|
textBoxCount = new TextBox();
|
|
buttonSave = new Button();
|
|
buttonCancel = new Button();
|
|
labelNameStand = new Label();
|
|
textBoxNameStand = new TextBox();
|
|
dateTimePickerDeliveryDate = new DateTimePicker();
|
|
SuspendLayout();
|
|
//
|
|
// labelDeliveryDate
|
|
//
|
|
labelDeliveryDate.AutoSize = true;
|
|
labelDeliveryDate.Font = new Font("Segoe UI", 12F, FontStyle.Regular, GraphicsUnit.Point);
|
|
labelDeliveryDate.Location = new Point(29, 65);
|
|
labelDeliveryDate.Name = "labelDeliveryDate";
|
|
labelDeliveryDate.Size = new Size(116, 21);
|
|
labelDeliveryDate.TabIndex = 0;
|
|
labelDeliveryDate.Text = "Дата поставки:";
|
|
//
|
|
// labelCount
|
|
//
|
|
labelCount.AutoSize = true;
|
|
labelCount.Font = new Font("Segoe UI", 12F, FontStyle.Regular, GraphicsUnit.Point);
|
|
labelCount.Location = new Point(29, 116);
|
|
labelCount.Name = "labelCount";
|
|
labelCount.Size = new Size(96, 21);
|
|
labelCount.TabIndex = 1;
|
|
labelCount.Text = "Количество:";
|
|
//
|
|
// textBoxCount
|
|
//
|
|
textBoxCount.Location = new Point(151, 116);
|
|
textBoxCount.Name = "textBoxCount";
|
|
textBoxCount.Size = new Size(218, 23);
|
|
textBoxCount.TabIndex = 3;
|
|
//
|
|
// buttonSave
|
|
//
|
|
buttonSave.Location = new Point(91, 188);
|
|
buttonSave.Name = "buttonSave";
|
|
buttonSave.Size = new Size(115, 49);
|
|
buttonSave.TabIndex = 4;
|
|
buttonSave.Text = "Сохранить";
|
|
buttonSave.UseVisualStyleBackColor = true;
|
|
buttonSave.Click += buttonSave_Click;
|
|
//
|
|
// buttonCancel
|
|
//
|
|
buttonCancel.Location = new Point(239, 188);
|
|
buttonCancel.Name = "buttonCancel";
|
|
buttonCancel.Size = new Size(115, 49);
|
|
buttonCancel.TabIndex = 5;
|
|
buttonCancel.Text = "Отмена";
|
|
buttonCancel.UseVisualStyleBackColor = true;
|
|
buttonCancel.Click += buttonCancel_Click;
|
|
//
|
|
// labelNameStand
|
|
//
|
|
labelNameStand.AutoSize = true;
|
|
labelNameStand.Font = new Font("Segoe UI", 12F, FontStyle.Regular, GraphicsUnit.Point);
|
|
labelNameStand.Location = new Point(30, 19);
|
|
labelNameStand.Name = "labelNameStand";
|
|
labelNameStand.Size = new Size(150, 21);
|
|
labelNameStand.TabIndex = 6;
|
|
labelNameStand.Text = "Название поставки:";
|
|
//
|
|
// textBoxNameStand
|
|
//
|
|
textBoxNameStand.Location = new Point(178, 19);
|
|
textBoxNameStand.Name = "textBoxNameStand";
|
|
textBoxNameStand.Size = new Size(191, 23);
|
|
textBoxNameStand.TabIndex = 7;
|
|
//
|
|
// dateTimePickerDeliveryDate
|
|
//
|
|
dateTimePickerDeliveryDate.Location = new Point(151, 65);
|
|
dateTimePickerDeliveryDate.Name = "dateTimePickerDeliveryDate";
|
|
dateTimePickerDeliveryDate.Size = new Size(218, 23);
|
|
dateTimePickerDeliveryDate.TabIndex = 8;
|
|
//
|
|
// FormStand
|
|
//
|
|
AutoScaleDimensions = new SizeF(7F, 15F);
|
|
AutoScaleMode = AutoScaleMode.Font;
|
|
ClientSize = new Size(451, 274);
|
|
Controls.Add(dateTimePickerDeliveryDate);
|
|
Controls.Add(textBoxNameStand);
|
|
Controls.Add(labelNameStand);
|
|
Controls.Add(buttonCancel);
|
|
Controls.Add(buttonSave);
|
|
Controls.Add(textBoxCount);
|
|
Controls.Add(labelCount);
|
|
Controls.Add(labelDeliveryDate);
|
|
Name = "FormStand";
|
|
Text = "Поставка";
|
|
Load += FormStand_Load;
|
|
ResumeLayout(false);
|
|
PerformLayout();
|
|
}
|
|
|
|
#endregion
|
|
|
|
private Label labelDeliveryDate;
|
|
private Label labelCount;
|
|
private TextBox textBoxCount;
|
|
private Button buttonSave;
|
|
private Button buttonCancel;
|
|
private Label labelNameStand;
|
|
private TextBox textBoxNameStand;
|
|
private DateTimePicker dateTimePickerDeliveryDate;
|
|
}
|
|
} |