143 lines
5.1 KiB
C#
143 lines
5.1 KiB
C#
|
namespace AccountingWarehouseProductsView
|
|||
|
{
|
|||
|
partial class FormWarehouse
|
|||
|
{
|
|||
|
/// <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()
|
|||
|
{
|
|||
|
labelName = new Label();
|
|||
|
labelAddress = new Label();
|
|||
|
labelCapacity = new Label();
|
|||
|
textBoxName = new TextBox();
|
|||
|
textBoxAddress = new TextBox();
|
|||
|
textBoxCapacity = new TextBox();
|
|||
|
buttonSave = new Button();
|
|||
|
buttonCancel = new Button();
|
|||
|
SuspendLayout();
|
|||
|
//
|
|||
|
// labelName
|
|||
|
//
|
|||
|
labelName.AutoSize = true;
|
|||
|
labelName.Font = new Font("Segoe UI", 12F, FontStyle.Regular, GraphicsUnit.Point);
|
|||
|
labelName.Location = new Point(24, 24);
|
|||
|
labelName.Name = "labelName";
|
|||
|
labelName.Size = new Size(81, 21);
|
|||
|
labelName.TabIndex = 0;
|
|||
|
labelName.Text = "Название:";
|
|||
|
//
|
|||
|
// labelAddress
|
|||
|
//
|
|||
|
labelAddress.AutoSize = true;
|
|||
|
labelAddress.Font = new Font("Segoe UI", 12F, FontStyle.Regular, GraphicsUnit.Point);
|
|||
|
labelAddress.Location = new Point(24, 73);
|
|||
|
labelAddress.Name = "labelAddress";
|
|||
|
labelAddress.Size = new Size(56, 21);
|
|||
|
labelAddress.TabIndex = 1;
|
|||
|
labelAddress.Text = "Адрес:";
|
|||
|
//
|
|||
|
// labelCapacity
|
|||
|
//
|
|||
|
labelCapacity.AutoSize = true;
|
|||
|
labelCapacity.Font = new Font("Segoe UI", 12F, FontStyle.Regular, GraphicsUnit.Point);
|
|||
|
labelCapacity.Location = new Point(24, 122);
|
|||
|
labelCapacity.Name = "labelCapacity";
|
|||
|
labelCapacity.Size = new Size(106, 21);
|
|||
|
labelCapacity.TabIndex = 2;
|
|||
|
labelCapacity.Text = "Вместимость:";
|
|||
|
//
|
|||
|
// textBoxName
|
|||
|
//
|
|||
|
textBoxName.Location = new Point(111, 26);
|
|||
|
textBoxName.Name = "textBoxName";
|
|||
|
textBoxName.Size = new Size(189, 23);
|
|||
|
textBoxName.TabIndex = 3;
|
|||
|
//
|
|||
|
// textBoxAddress
|
|||
|
//
|
|||
|
textBoxAddress.Location = new Point(96, 75);
|
|||
|
textBoxAddress.Name = "textBoxAddress";
|
|||
|
textBoxAddress.Size = new Size(204, 23);
|
|||
|
textBoxAddress.TabIndex = 4;
|
|||
|
//
|
|||
|
// textBoxCapacity
|
|||
|
//
|
|||
|
textBoxCapacity.Location = new Point(136, 122);
|
|||
|
textBoxCapacity.Name = "textBoxCapacity";
|
|||
|
textBoxCapacity.Size = new Size(164, 23);
|
|||
|
textBoxCapacity.TabIndex = 5;
|
|||
|
//
|
|||
|
// buttonSave
|
|||
|
//
|
|||
|
buttonSave.Location = new Point(37, 182);
|
|||
|
buttonSave.Name = "buttonSave";
|
|||
|
buttonSave.Size = new Size(143, 49);
|
|||
|
buttonSave.TabIndex = 6;
|
|||
|
buttonSave.Text = "Сохранить";
|
|||
|
buttonSave.UseVisualStyleBackColor = true;
|
|||
|
buttonSave.Click += buttonSave_Click;
|
|||
|
//
|
|||
|
// buttonCancel
|
|||
|
//
|
|||
|
buttonCancel.Location = new Point(227, 182);
|
|||
|
buttonCancel.Name = "buttonCancel";
|
|||
|
buttonCancel.Size = new Size(143, 49);
|
|||
|
buttonCancel.TabIndex = 7;
|
|||
|
buttonCancel.Text = "Отмена";
|
|||
|
buttonCancel.UseVisualStyleBackColor = true;
|
|||
|
buttonCancel.Click += buttonCancel_Click;
|
|||
|
//
|
|||
|
// FormWarehouse
|
|||
|
//
|
|||
|
AutoScaleDimensions = new SizeF(7F, 15F);
|
|||
|
AutoScaleMode = AutoScaleMode.Font;
|
|||
|
ClientSize = new Size(421, 274);
|
|||
|
Controls.Add(buttonCancel);
|
|||
|
Controls.Add(buttonSave);
|
|||
|
Controls.Add(textBoxCapacity);
|
|||
|
Controls.Add(textBoxAddress);
|
|||
|
Controls.Add(textBoxName);
|
|||
|
Controls.Add(labelCapacity);
|
|||
|
Controls.Add(labelAddress);
|
|||
|
Controls.Add(labelName);
|
|||
|
Name = "FormWarehouse";
|
|||
|
Text = "Склад";
|
|||
|
Load += FormWarehouse_Load;
|
|||
|
ResumeLayout(false);
|
|||
|
PerformLayout();
|
|||
|
}
|
|||
|
|
|||
|
#endregion
|
|||
|
|
|||
|
private Label labelName;
|
|||
|
private Label labelAddress;
|
|||
|
private Label labelCapacity;
|
|||
|
private TextBox textBoxName;
|
|||
|
private TextBox textBoxAddress;
|
|||
|
private TextBox textBoxCapacity;
|
|||
|
private Button buttonSave;
|
|||
|
private Button buttonCancel;
|
|||
|
}
|
|||
|
}
|