2023-10-31 12:26:25 +04:00
|
|
|
|
namespace ProjectTank
|
|
|
|
|
{
|
|
|
|
|
partial class FormTankCollection
|
|
|
|
|
{
|
|
|
|
|
/// <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();
|
|
|
|
|
label1 = new Label();
|
2023-11-18 16:18:44 +04:00
|
|
|
|
refreshObjectsButton = new Button();
|
|
|
|
|
deleteTankButton = new Button();
|
|
|
|
|
addTankButton = new Button();
|
2023-10-31 12:26:25 +04:00
|
|
|
|
maskedTextBoxNumber = new TextBox();
|
2023-10-31 12:39:26 +04:00
|
|
|
|
label2 = new Label();
|
|
|
|
|
textBoxStorageName = new TextBox();
|
2023-11-18 16:18:44 +04:00
|
|
|
|
addObjectButton = new Button();
|
2023-10-31 12:39:26 +04:00
|
|
|
|
listBoxStorages = new ListBox();
|
2023-11-18 16:18:44 +04:00
|
|
|
|
deleteObjectButton = new Button();
|
2023-10-31 12:26:25 +04:00
|
|
|
|
((System.ComponentModel.ISupportInitialize)pictureBoxCollection).BeginInit();
|
|
|
|
|
SuspendLayout();
|
|
|
|
|
//
|
|
|
|
|
// pictureBoxCollection
|
|
|
|
|
//
|
|
|
|
|
pictureBoxCollection.Location = new Point(6, 4);
|
|
|
|
|
pictureBoxCollection.Name = "pictureBoxCollection";
|
|
|
|
|
pictureBoxCollection.Size = new Size(760, 475);
|
|
|
|
|
pictureBoxCollection.TabIndex = 0;
|
|
|
|
|
pictureBoxCollection.TabStop = false;
|
|
|
|
|
//
|
|
|
|
|
// label1
|
|
|
|
|
//
|
|
|
|
|
label1.AutoSize = true;
|
|
|
|
|
label1.Location = new Point(775, 9);
|
|
|
|
|
label1.Name = "label1";
|
|
|
|
|
label1.Size = new Size(103, 20);
|
|
|
|
|
label1.TabIndex = 1;
|
|
|
|
|
label1.Text = "Инструменты";
|
|
|
|
|
//
|
2023-11-18 16:18:44 +04:00
|
|
|
|
// refreshObjectsButton
|
2023-10-31 12:26:25 +04:00
|
|
|
|
//
|
2023-11-18 16:18:44 +04:00
|
|
|
|
refreshObjectsButton.Location = new Point(775, 448);
|
|
|
|
|
refreshObjectsButton.Name = "refreshObjectsButton";
|
|
|
|
|
refreshObjectsButton.Size = new Size(139, 29);
|
|
|
|
|
refreshObjectsButton.TabIndex = 4;
|
|
|
|
|
refreshObjectsButton.Text = "Обн. коллекцию";
|
|
|
|
|
refreshObjectsButton.UseVisualStyleBackColor = true;
|
|
|
|
|
refreshObjectsButton.Click += ButtonRefreshCollection_Click;
|
2023-10-31 12:26:25 +04:00
|
|
|
|
//
|
2023-11-18 16:18:44 +04:00
|
|
|
|
// deleteTankButton
|
2023-10-31 12:26:25 +04:00
|
|
|
|
//
|
2023-11-18 16:18:44 +04:00
|
|
|
|
deleteTankButton.Location = new Point(775, 393);
|
|
|
|
|
deleteTankButton.Name = "deleteTankButton";
|
|
|
|
|
deleteTankButton.Size = new Size(139, 29);
|
|
|
|
|
deleteTankButton.TabIndex = 5;
|
|
|
|
|
deleteTankButton.Text = "Удалить танк";
|
|
|
|
|
deleteTankButton.UseVisualStyleBackColor = true;
|
|
|
|
|
deleteTankButton.Click += ButtonRemoveTank_Click;
|
2023-10-31 12:26:25 +04:00
|
|
|
|
//
|
2023-11-18 16:18:44 +04:00
|
|
|
|
// addTankButton
|
2023-10-31 12:26:25 +04:00
|
|
|
|
//
|
2023-11-18 16:18:44 +04:00
|
|
|
|
addTankButton.Location = new Point(775, 306);
|
|
|
|
|
addTankButton.Name = "addTankButton";
|
|
|
|
|
addTankButton.Size = new Size(139, 29);
|
|
|
|
|
addTankButton.TabIndex = 6;
|
|
|
|
|
addTankButton.Text = "Добавить танк";
|
|
|
|
|
addTankButton.UseVisualStyleBackColor = true;
|
|
|
|
|
addTankButton.Click += ButtonAddTank_Click;
|
2023-10-31 12:26:25 +04:00
|
|
|
|
//
|
|
|
|
|
// maskedTextBoxNumber
|
|
|
|
|
//
|
2023-10-31 12:39:26 +04:00
|
|
|
|
maskedTextBoxNumber.Location = new Point(775, 360);
|
2023-10-31 12:26:25 +04:00
|
|
|
|
maskedTextBoxNumber.Name = "maskedTextBoxNumber";
|
|
|
|
|
maskedTextBoxNumber.Size = new Size(139, 27);
|
|
|
|
|
maskedTextBoxNumber.TabIndex = 7;
|
|
|
|
|
//
|
2023-10-31 12:39:26 +04:00
|
|
|
|
// label2
|
|
|
|
|
//
|
|
|
|
|
label2.AutoSize = true;
|
|
|
|
|
label2.Location = new Point(775, 51);
|
|
|
|
|
label2.Name = "label2";
|
|
|
|
|
label2.Size = new Size(66, 20);
|
|
|
|
|
label2.TabIndex = 8;
|
|
|
|
|
label2.Text = "Наборы";
|
|
|
|
|
//
|
|
|
|
|
// textBoxStorageName
|
|
|
|
|
//
|
|
|
|
|
textBoxStorageName.Location = new Point(775, 74);
|
|
|
|
|
textBoxStorageName.Name = "textBoxStorageName";
|
|
|
|
|
textBoxStorageName.Size = new Size(139, 27);
|
|
|
|
|
textBoxStorageName.TabIndex = 9;
|
|
|
|
|
//
|
2023-11-18 16:18:44 +04:00
|
|
|
|
// addObjectButton
|
2023-10-31 12:39:26 +04:00
|
|
|
|
//
|
2023-11-18 16:18:44 +04:00
|
|
|
|
addObjectButton.Location = new Point(775, 107);
|
|
|
|
|
addObjectButton.Name = "addObjectButton";
|
|
|
|
|
addObjectButton.Size = new Size(139, 29);
|
|
|
|
|
addObjectButton.TabIndex = 10;
|
|
|
|
|
addObjectButton.Text = "Добавить набор";
|
|
|
|
|
addObjectButton.UseVisualStyleBackColor = true;
|
|
|
|
|
addObjectButton.Click += ButtonAddObject_Click;
|
2023-10-31 12:39:26 +04:00
|
|
|
|
//
|
|
|
|
|
// listBoxStorages
|
|
|
|
|
//
|
|
|
|
|
listBoxStorages.FormattingEnabled = true;
|
|
|
|
|
listBoxStorages.ItemHeight = 20;
|
|
|
|
|
listBoxStorages.Location = new Point(775, 142);
|
|
|
|
|
listBoxStorages.Name = "listBoxStorages";
|
|
|
|
|
listBoxStorages.Size = new Size(139, 84);
|
|
|
|
|
listBoxStorages.TabIndex = 11;
|
|
|
|
|
listBoxStorages.SelectedIndexChanged += ListBoxObjects_SelectedIndexChanged;
|
|
|
|
|
//
|
2023-11-18 16:18:44 +04:00
|
|
|
|
// deleteObjectButton
|
2023-10-31 12:39:26 +04:00
|
|
|
|
//
|
2023-11-18 16:18:44 +04:00
|
|
|
|
deleteObjectButton.Location = new Point(775, 232);
|
|
|
|
|
deleteObjectButton.Name = "deleteObjectButton";
|
|
|
|
|
deleteObjectButton.Size = new Size(139, 29);
|
|
|
|
|
deleteObjectButton.TabIndex = 12;
|
|
|
|
|
deleteObjectButton.Text = "Удалить набор";
|
|
|
|
|
deleteObjectButton.UseVisualStyleBackColor = true;
|
|
|
|
|
deleteObjectButton.Click += ButtonDelObject_Click;
|
2023-10-31 12:39:26 +04:00
|
|
|
|
//
|
2023-10-31 12:26:25 +04:00
|
|
|
|
// FormTankCollection
|
|
|
|
|
//
|
|
|
|
|
AutoScaleDimensions = new SizeF(8F, 20F);
|
|
|
|
|
AutoScaleMode = AutoScaleMode.Font;
|
|
|
|
|
ClientSize = new Size(926, 486);
|
2023-11-18 16:18:44 +04:00
|
|
|
|
Controls.Add(deleteObjectButton);
|
2023-10-31 12:39:26 +04:00
|
|
|
|
Controls.Add(listBoxStorages);
|
2023-11-18 16:18:44 +04:00
|
|
|
|
Controls.Add(addObjectButton);
|
2023-10-31 12:39:26 +04:00
|
|
|
|
Controls.Add(textBoxStorageName);
|
|
|
|
|
Controls.Add(label2);
|
2023-10-31 12:26:25 +04:00
|
|
|
|
Controls.Add(maskedTextBoxNumber);
|
2023-11-18 16:18:44 +04:00
|
|
|
|
Controls.Add(addTankButton);
|
|
|
|
|
Controls.Add(deleteTankButton);
|
|
|
|
|
Controls.Add(refreshObjectsButton);
|
2023-10-31 12:26:25 +04:00
|
|
|
|
Controls.Add(label1);
|
|
|
|
|
Controls.Add(pictureBoxCollection);
|
|
|
|
|
Name = "FormTankCollection";
|
|
|
|
|
Text = "Набор танков";
|
|
|
|
|
((System.ComponentModel.ISupportInitialize)pictureBoxCollection).EndInit();
|
|
|
|
|
ResumeLayout(false);
|
|
|
|
|
PerformLayout();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
|
|
private PictureBox pictureBoxCollection;
|
|
|
|
|
private Label label1;
|
2023-11-18 16:18:44 +04:00
|
|
|
|
private Button refreshObjectsButton;
|
|
|
|
|
private Button deleteTankButton;
|
|
|
|
|
private Button addTankButton;
|
2023-10-31 12:26:25 +04:00
|
|
|
|
private TextBox maskedTextBoxNumber;
|
2023-10-31 12:39:26 +04:00
|
|
|
|
private Label label2;
|
|
|
|
|
private TextBox textBoxStorageName;
|
2023-11-18 16:18:44 +04:00
|
|
|
|
private Button addObjectButton;
|
2023-10-31 12:39:26 +04:00
|
|
|
|
private ListBox listBoxStorages;
|
2023-11-18 16:18:44 +04:00
|
|
|
|
private Button deleteObjectButton;
|
2023-10-31 12:26:25 +04:00
|
|
|
|
}
|
|
|
|
|
}
|