PIbd-23_Dyakonov_R_R_Tank/ProjectTank/FormTankCollection.Designer.cs
2023-11-18 16:18:44 +04:00

182 lines
7.1 KiB
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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();
refreshObjectsButton = new Button();
deleteTankButton = new Button();
addTankButton = new Button();
maskedTextBoxNumber = new TextBox();
label2 = new Label();
textBoxStorageName = new TextBox();
addObjectButton = new Button();
listBoxStorages = new ListBox();
deleteObjectButton = new Button();
((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 = "Инструменты";
//
// refreshObjectsButton
//
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;
//
// deleteTankButton
//
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;
//
// addTankButton
//
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;
//
// maskedTextBoxNumber
//
maskedTextBoxNumber.Location = new Point(775, 360);
maskedTextBoxNumber.Name = "maskedTextBoxNumber";
maskedTextBoxNumber.Size = new Size(139, 27);
maskedTextBoxNumber.TabIndex = 7;
//
// 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;
//
// addObjectButton
//
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;
//
// 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;
//
// deleteObjectButton
//
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;
//
// FormTankCollection
//
AutoScaleDimensions = new SizeF(8F, 20F);
AutoScaleMode = AutoScaleMode.Font;
ClientSize = new Size(926, 486);
Controls.Add(deleteObjectButton);
Controls.Add(listBoxStorages);
Controls.Add(addObjectButton);
Controls.Add(textBoxStorageName);
Controls.Add(label2);
Controls.Add(maskedTextBoxNumber);
Controls.Add(addTankButton);
Controls.Add(deleteTankButton);
Controls.Add(refreshObjectsButton);
Controls.Add(label1);
Controls.Add(pictureBoxCollection);
Name = "FormTankCollection";
Text = "Набор танков";
((System.ComponentModel.ISupportInitialize)pictureBoxCollection).EndInit();
ResumeLayout(false);
PerformLayout();
}
#endregion
private PictureBox pictureBoxCollection;
private Label label1;
private Button refreshObjectsButton;
private Button deleteTankButton;
private Button addTankButton;
private TextBox maskedTextBoxNumber;
private Label label2;
private TextBox textBoxStorageName;
private Button addObjectButton;
private ListBox listBoxStorages;
private Button deleteObjectButton;
}
}