158 lines
6.4 KiB
C#
158 lines
6.4 KiB
C#
namespace ProjectLainer
|
|
{
|
|
partial class FormLainerCollection
|
|
{
|
|
/// <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()
|
|
{
|
|
pictureBoxCollection = new PictureBox();
|
|
ButtonAddLainer = new Button();
|
|
ButtonRemove = new Button();
|
|
ButtonRefresh = new Button();
|
|
maskedTextBoxNumber = new MaskedTextBox();
|
|
ButtonAddObject = new Button();
|
|
textBoxStorageName = new TextBox();
|
|
listBoxStorages = new ListBox();
|
|
ButtonDelObject = new Button();
|
|
((System.ComponentModel.ISupportInitialize)pictureBoxCollection).BeginInit();
|
|
SuspendLayout();
|
|
//
|
|
// pictureBoxCollection
|
|
//
|
|
pictureBoxCollection.Location = new Point(16, 14);
|
|
pictureBoxCollection.Name = "pictureBoxCollection";
|
|
pictureBoxCollection.Size = new Size(815, 434);
|
|
pictureBoxCollection.TabIndex = 0;
|
|
pictureBoxCollection.TabStop = false;
|
|
//
|
|
// ButtonAddLainer
|
|
//
|
|
ButtonAddLainer.Location = new Point(872, 282);
|
|
ButtonAddLainer.Name = "ButtonAddLainer";
|
|
ButtonAddLainer.Size = new Size(154, 32);
|
|
ButtonAddLainer.TabIndex = 1;
|
|
ButtonAddLainer.Text = "добавить лайнер";
|
|
ButtonAddLainer.UseVisualStyleBackColor = true;
|
|
ButtonAddLainer.Click += ButtonAddLainer_Click;
|
|
//
|
|
// ButtonRemove
|
|
//
|
|
ButtonRemove.Location = new Point(887, 384);
|
|
ButtonRemove.Name = "ButtonRemove";
|
|
ButtonRemove.Size = new Size(139, 37);
|
|
ButtonRemove.TabIndex = 2;
|
|
ButtonRemove.Text = "удалить лайнер";
|
|
ButtonRemove.UseVisualStyleBackColor = true;
|
|
ButtonRemove.Click += ButtonRemove_Click;
|
|
//
|
|
// ButtonRefresh
|
|
//
|
|
ButtonRefresh.Location = new Point(849, 449);
|
|
ButtonRefresh.Name = "ButtonRefresh";
|
|
ButtonRefresh.Size = new Size(164, 29);
|
|
ButtonRefresh.TabIndex = 3;
|
|
ButtonRefresh.Text = "обновить коллекцию";
|
|
ButtonRefresh.UseVisualStyleBackColor = true;
|
|
ButtonRefresh.Click += ButtonRefreshCollection_Click;
|
|
//
|
|
// maskedTextBoxNumber
|
|
//
|
|
maskedTextBoxNumber.Location = new Point(888, 351);
|
|
maskedTextBoxNumber.Name = "maskedTextBoxNumber";
|
|
maskedTextBoxNumber.Size = new Size(125, 27);
|
|
maskedTextBoxNumber.TabIndex = 4;
|
|
//
|
|
// ButtonAddObject
|
|
//
|
|
ButtonAddObject.Location = new Point(856, 55);
|
|
ButtonAddObject.Name = "ButtonAddObject";
|
|
ButtonAddObject.Size = new Size(170, 29);
|
|
ButtonAddObject.TabIndex = 5;
|
|
ButtonAddObject.Text = "добавить набор";
|
|
ButtonAddObject.UseVisualStyleBackColor = true;
|
|
ButtonAddObject.Click += ButtonAddObject_Click;
|
|
//
|
|
// textBoxStorageName
|
|
//
|
|
textBoxStorageName.Location = new Point(892, 22);
|
|
textBoxStorageName.Name = "textBoxStorageName";
|
|
textBoxStorageName.Size = new Size(125, 27);
|
|
textBoxStorageName.TabIndex = 6;
|
|
//
|
|
// listBoxStorages
|
|
//
|
|
listBoxStorages.FormattingEnabled = true;
|
|
listBoxStorages.ItemHeight = 20;
|
|
listBoxStorages.Location = new Point(876, 90);
|
|
listBoxStorages.Name = "listBoxStorages";
|
|
listBoxStorages.Size = new Size(150, 104);
|
|
listBoxStorages.TabIndex = 7;
|
|
listBoxStorages.SelectedIndexChanged += listBoxStorages_SelectedIndexChanged;
|
|
//
|
|
// ButtonDelObject
|
|
//
|
|
ButtonDelObject.Location = new Point(888, 210);
|
|
ButtonDelObject.Name = "ButtonDelObject";
|
|
ButtonDelObject.Size = new Size(138, 29);
|
|
ButtonDelObject.TabIndex = 8;
|
|
ButtonDelObject.Text = "удалить набор";
|
|
ButtonDelObject.UseVisualStyleBackColor = true;
|
|
ButtonDelObject.Click += ButtonDelObject_Click;
|
|
//
|
|
// FormLainerCollection
|
|
//
|
|
AutoScaleDimensions = new SizeF(8F, 20F);
|
|
AutoScaleMode = AutoScaleMode.Font;
|
|
ClientSize = new Size(1038, 490);
|
|
Controls.Add(ButtonDelObject);
|
|
Controls.Add(listBoxStorages);
|
|
Controls.Add(textBoxStorageName);
|
|
Controls.Add(ButtonAddObject);
|
|
Controls.Add(maskedTextBoxNumber);
|
|
Controls.Add(ButtonRefresh);
|
|
Controls.Add(ButtonRemove);
|
|
Controls.Add(ButtonAddLainer);
|
|
Controls.Add(pictureBoxCollection);
|
|
Name = "FormLainerCollection";
|
|
Text = "FormLainerCollection";
|
|
((System.ComponentModel.ISupportInitialize)pictureBoxCollection).EndInit();
|
|
ResumeLayout(false);
|
|
PerformLayout();
|
|
}
|
|
|
|
#endregion
|
|
|
|
private PictureBox pictureBoxCollection;
|
|
private Button ButtonAddLainer;
|
|
private Button ButtonRemove;
|
|
private Button ButtonRefresh;
|
|
private MaskedTextBox maskedTextBoxNumber;
|
|
private Button ButtonAddObject;
|
|
private TextBox textBoxStorageName;
|
|
private ListBox listBoxStorages;
|
|
private Button ButtonDelObject;
|
|
}
|
|
} |