2023-12-08 21:10:19 +04:00
|
|
|
|
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();
|
2023-12-19 18:48:02 +04:00
|
|
|
|
ButtonAddObject = new Button();
|
|
|
|
|
textBoxStorageName = new TextBox();
|
|
|
|
|
listBoxStorages = new ListBox();
|
|
|
|
|
ButtonDelObject = new Button();
|
2023-12-19 20:12:51 +04:00
|
|
|
|
saveFileDialog = new SaveFileDialog();
|
|
|
|
|
openFileDialog = new OpenFileDialog();
|
|
|
|
|
menuStrip1 = new MenuStrip();
|
|
|
|
|
файлToolStripMenuItem = new ToolStripMenuItem();
|
|
|
|
|
SaveToolStripMenuItem = new ToolStripMenuItem();
|
|
|
|
|
LoadToolStripItem = new ToolStripMenuItem();
|
2023-12-08 21:10:19 +04:00
|
|
|
|
((System.ComponentModel.ISupportInitialize)pictureBoxCollection).BeginInit();
|
2023-12-19 20:12:51 +04:00
|
|
|
|
menuStrip1.SuspendLayout();
|
2023-12-08 21:10:19 +04:00
|
|
|
|
SuspendLayout();
|
|
|
|
|
//
|
|
|
|
|
// pictureBoxCollection
|
|
|
|
|
//
|
2023-12-19 20:12:51 +04:00
|
|
|
|
pictureBoxCollection.Location = new Point(12, 56);
|
2023-12-08 21:10:19 +04:00
|
|
|
|
pictureBoxCollection.Name = "pictureBoxCollection";
|
2023-12-19 20:12:51 +04:00
|
|
|
|
pictureBoxCollection.Size = new Size(706, 434);
|
2023-12-08 21:10:19 +04:00
|
|
|
|
pictureBoxCollection.TabIndex = 0;
|
|
|
|
|
pictureBoxCollection.TabStop = false;
|
|
|
|
|
//
|
|
|
|
|
// ButtonAddLainer
|
|
|
|
|
//
|
2023-12-19 20:12:51 +04:00
|
|
|
|
ButtonAddLainer.Location = new Point(804, 374);
|
2023-12-08 21:10:19 +04:00
|
|
|
|
ButtonAddLainer.Name = "ButtonAddLainer";
|
2023-12-19 18:48:02 +04:00
|
|
|
|
ButtonAddLainer.Size = new Size(154, 32);
|
2023-12-08 21:10:19 +04:00
|
|
|
|
ButtonAddLainer.TabIndex = 1;
|
|
|
|
|
ButtonAddLainer.Text = "добавить лайнер";
|
|
|
|
|
ButtonAddLainer.UseVisualStyleBackColor = true;
|
|
|
|
|
ButtonAddLainer.Click += ButtonAddLainer_Click;
|
|
|
|
|
//
|
|
|
|
|
// ButtonRemove
|
|
|
|
|
//
|
2023-12-19 20:12:51 +04:00
|
|
|
|
ButtonRemove.Location = new Point(807, 453);
|
2023-12-08 21:10:19 +04:00
|
|
|
|
ButtonRemove.Name = "ButtonRemove";
|
2023-12-19 18:48:02 +04:00
|
|
|
|
ButtonRemove.Size = new Size(139, 37);
|
2023-12-08 21:10:19 +04:00
|
|
|
|
ButtonRemove.TabIndex = 2;
|
|
|
|
|
ButtonRemove.Text = "удалить лайнер";
|
|
|
|
|
ButtonRemove.UseVisualStyleBackColor = true;
|
|
|
|
|
ButtonRemove.Click += ButtonRemove_Click;
|
|
|
|
|
//
|
|
|
|
|
// ButtonRefresh
|
|
|
|
|
//
|
2023-12-19 20:12:51 +04:00
|
|
|
|
ButtonRefresh.Location = new Point(808, 510);
|
2023-12-08 21:10:19 +04:00
|
|
|
|
ButtonRefresh.Name = "ButtonRefresh";
|
2023-12-19 18:48:02 +04:00
|
|
|
|
ButtonRefresh.Size = new Size(164, 29);
|
2023-12-08 21:10:19 +04:00
|
|
|
|
ButtonRefresh.TabIndex = 3;
|
|
|
|
|
ButtonRefresh.Text = "обновить коллекцию";
|
|
|
|
|
ButtonRefresh.UseVisualStyleBackColor = true;
|
2023-12-19 18:48:02 +04:00
|
|
|
|
ButtonRefresh.Click += ButtonRefreshCollection_Click;
|
2023-12-08 21:10:19 +04:00
|
|
|
|
//
|
|
|
|
|
// maskedTextBoxNumber
|
|
|
|
|
//
|
2023-12-19 20:12:51 +04:00
|
|
|
|
maskedTextBoxNumber.Location = new Point(812, 412);
|
2023-12-08 21:10:19 +04:00
|
|
|
|
maskedTextBoxNumber.Name = "maskedTextBoxNumber";
|
|
|
|
|
maskedTextBoxNumber.Size = new Size(125, 27);
|
|
|
|
|
maskedTextBoxNumber.TabIndex = 4;
|
|
|
|
|
//
|
2023-12-19 18:48:02 +04:00
|
|
|
|
// ButtonAddObject
|
|
|
|
|
//
|
2023-12-19 20:12:51 +04:00
|
|
|
|
ButtonAddObject.Location = new Point(790, 133);
|
2023-12-19 18:48:02 +04:00
|
|
|
|
ButtonAddObject.Name = "ButtonAddObject";
|
|
|
|
|
ButtonAddObject.Size = new Size(170, 29);
|
|
|
|
|
ButtonAddObject.TabIndex = 5;
|
|
|
|
|
ButtonAddObject.Text = "добавить набор";
|
|
|
|
|
ButtonAddObject.UseVisualStyleBackColor = true;
|
|
|
|
|
ButtonAddObject.Click += ButtonAddObject_Click;
|
|
|
|
|
//
|
|
|
|
|
// textBoxStorageName
|
|
|
|
|
//
|
2023-12-19 20:12:51 +04:00
|
|
|
|
textBoxStorageName.Location = new Point(808, 69);
|
2023-12-19 18:48:02 +04:00
|
|
|
|
textBoxStorageName.Name = "textBoxStorageName";
|
|
|
|
|
textBoxStorageName.Size = new Size(125, 27);
|
|
|
|
|
textBoxStorageName.TabIndex = 6;
|
2023-12-19 20:12:51 +04:00
|
|
|
|
//textBoxStorageName.TextChanged += textBoxStorageName_TextChanged;
|
2023-12-19 18:48:02 +04:00
|
|
|
|
//
|
|
|
|
|
// listBoxStorages
|
|
|
|
|
//
|
|
|
|
|
listBoxStorages.FormattingEnabled = true;
|
|
|
|
|
listBoxStorages.ItemHeight = 20;
|
2023-12-19 20:12:51 +04:00
|
|
|
|
listBoxStorages.Location = new Point(808, 168);
|
2023-12-19 18:48:02 +04:00
|
|
|
|
listBoxStorages.Name = "listBoxStorages";
|
|
|
|
|
listBoxStorages.Size = new Size(150, 104);
|
|
|
|
|
listBoxStorages.TabIndex = 7;
|
|
|
|
|
listBoxStorages.SelectedIndexChanged += listBoxStorages_SelectedIndexChanged;
|
|
|
|
|
//
|
|
|
|
|
// ButtonDelObject
|
|
|
|
|
//
|
2023-12-19 20:12:51 +04:00
|
|
|
|
ButtonDelObject.Location = new Point(808, 293);
|
2023-12-19 18:48:02 +04:00
|
|
|
|
ButtonDelObject.Name = "ButtonDelObject";
|
|
|
|
|
ButtonDelObject.Size = new Size(138, 29);
|
|
|
|
|
ButtonDelObject.TabIndex = 8;
|
|
|
|
|
ButtonDelObject.Text = "удалить набор";
|
|
|
|
|
ButtonDelObject.UseVisualStyleBackColor = true;
|
|
|
|
|
ButtonDelObject.Click += ButtonDelObject_Click;
|
|
|
|
|
//
|
2023-12-19 20:12:51 +04:00
|
|
|
|
// openFileDialog
|
|
|
|
|
//
|
|
|
|
|
openFileDialog.FileName = "openFileDialog1";
|
|
|
|
|
//
|
|
|
|
|
// menuStrip1
|
|
|
|
|
//
|
|
|
|
|
menuStrip1.ImageScalingSize = new Size(20, 20);
|
|
|
|
|
menuStrip1.Items.AddRange(new ToolStripItem[] { файлToolStripMenuItem });
|
|
|
|
|
menuStrip1.Location = new Point(0, 0);
|
|
|
|
|
menuStrip1.Name = "menuStrip1";
|
|
|
|
|
menuStrip1.Size = new Size(1027, 28);
|
|
|
|
|
menuStrip1.TabIndex = 12;
|
|
|
|
|
menuStrip1.Text = "menuStrip1";
|
|
|
|
|
//
|
|
|
|
|
// файлToolStripMenuItem
|
|
|
|
|
//
|
|
|
|
|
файлToolStripMenuItem.DropDownItems.AddRange(new ToolStripItem[] { SaveToolStripMenuItem, LoadToolStripItem });
|
|
|
|
|
файлToolStripMenuItem.Name = "файлToolStripMenuItem";
|
|
|
|
|
файлToolStripMenuItem.Size = new Size(58, 24);
|
|
|
|
|
файлToolStripMenuItem.Text = "файл";
|
|
|
|
|
//
|
|
|
|
|
// SaveToolStripMenuItem
|
|
|
|
|
//
|
|
|
|
|
SaveToolStripMenuItem.Name = "SaveToolStripMenuItem";
|
|
|
|
|
SaveToolStripMenuItem.Size = new Size(175, 26);
|
|
|
|
|
SaveToolStripMenuItem.Text = "сохранение";
|
|
|
|
|
SaveToolStripMenuItem.Click += SaveToolStripMenuItem_Click;
|
|
|
|
|
//
|
|
|
|
|
// LoadToolStripItem
|
|
|
|
|
//
|
|
|
|
|
LoadToolStripItem.Name = "LoadToolStripItem";
|
|
|
|
|
LoadToolStripItem.Size = new Size(175, 26);
|
|
|
|
|
LoadToolStripItem.Text = "загрузка";
|
|
|
|
|
LoadToolStripItem.Click += LoadToolStripItem_Click;
|
|
|
|
|
//
|
2023-12-08 21:10:19 +04:00
|
|
|
|
// FormLainerCollection
|
|
|
|
|
//
|
|
|
|
|
AutoScaleDimensions = new SizeF(8F, 20F);
|
|
|
|
|
AutoScaleMode = AutoScaleMode.Font;
|
2023-12-19 20:12:51 +04:00
|
|
|
|
ClientSize = new Size(1027, 551);
|
|
|
|
|
Controls.Add(menuStrip1);
|
2023-12-19 18:48:02 +04:00
|
|
|
|
Controls.Add(ButtonDelObject);
|
|
|
|
|
Controls.Add(listBoxStorages);
|
|
|
|
|
Controls.Add(textBoxStorageName);
|
|
|
|
|
Controls.Add(ButtonAddObject);
|
2023-12-08 21:10:19 +04:00
|
|
|
|
Controls.Add(maskedTextBoxNumber);
|
|
|
|
|
Controls.Add(ButtonRefresh);
|
|
|
|
|
Controls.Add(ButtonRemove);
|
|
|
|
|
Controls.Add(ButtonAddLainer);
|
|
|
|
|
Controls.Add(pictureBoxCollection);
|
2023-12-19 20:12:51 +04:00
|
|
|
|
MainMenuStrip = menuStrip1;
|
2023-12-08 21:10:19 +04:00
|
|
|
|
Name = "FormLainerCollection";
|
|
|
|
|
Text = "FormLainerCollection";
|
|
|
|
|
((System.ComponentModel.ISupportInitialize)pictureBoxCollection).EndInit();
|
2023-12-19 20:12:51 +04:00
|
|
|
|
menuStrip1.ResumeLayout(false);
|
|
|
|
|
menuStrip1.PerformLayout();
|
2023-12-08 21:10:19 +04:00
|
|
|
|
ResumeLayout(false);
|
|
|
|
|
PerformLayout();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
|
|
private PictureBox pictureBoxCollection;
|
|
|
|
|
private Button ButtonAddLainer;
|
|
|
|
|
private Button ButtonRemove;
|
|
|
|
|
private Button ButtonRefresh;
|
|
|
|
|
private MaskedTextBox maskedTextBoxNumber;
|
2023-12-19 18:48:02 +04:00
|
|
|
|
private Button ButtonAddObject;
|
|
|
|
|
private TextBox textBoxStorageName;
|
|
|
|
|
private ListBox listBoxStorages;
|
|
|
|
|
private Button ButtonDelObject;
|
2023-12-19 20:12:51 +04:00
|
|
|
|
private SaveFileDialog saveFileDialog;
|
|
|
|
|
private OpenFileDialog openFileDialog;
|
|
|
|
|
private MenuStrip menuStrip1;
|
|
|
|
|
private ToolStripMenuItem файлToolStripMenuItem;
|
|
|
|
|
private ToolStripMenuItem SaveToolStripMenuItem;
|
|
|
|
|
private ToolStripMenuItem LoadToolStripItem;
|
2023-12-08 21:10:19 +04:00
|
|
|
|
}
|
|
|
|
|
}
|