2024-04-24 22:45:48 +04:00
|
|
|
|
namespace lab1
|
|
|
|
|
{
|
|
|
|
|
partial class FormTrackedVehicleCollection
|
|
|
|
|
{
|
|
|
|
|
/// <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()
|
|
|
|
|
{
|
|
|
|
|
groupBoxTools = new GroupBox();
|
2024-04-25 02:02:47 +04:00
|
|
|
|
panelCompanyTools = new Panel();
|
|
|
|
|
buttonAddTrackedVehicle = new Button();
|
2024-04-24 22:45:48 +04:00
|
|
|
|
buttonRefresh = new Button();
|
2024-04-25 02:02:47 +04:00
|
|
|
|
maskedTextBox = new MaskedTextBox();
|
2024-04-24 22:45:48 +04:00
|
|
|
|
buttonGoToCheck = new Button();
|
|
|
|
|
buttonRemoveTrackedVehicle = new Button();
|
2024-04-25 02:02:47 +04:00
|
|
|
|
button1CreateCompany = new Button();
|
|
|
|
|
panelStorage = new Panel();
|
|
|
|
|
buttonCollectionDel = new Button();
|
|
|
|
|
listBoxCollection = new ListBox();
|
|
|
|
|
buttonCollectionAdd = new Button();
|
|
|
|
|
radioButtonList = new RadioButton();
|
|
|
|
|
radioButtonMassive = new RadioButton();
|
|
|
|
|
textBoxCollectionName = new TextBox();
|
|
|
|
|
labelCollectionName = new Label();
|
2024-04-24 22:45:48 +04:00
|
|
|
|
comboBoxSelectorCompany = new ComboBox();
|
|
|
|
|
pictureBox = new PictureBox();
|
2024-08-29 19:32:46 +04:00
|
|
|
|
menuStrip = new MenuStrip();
|
|
|
|
|
файлToolStripMenuItem = new ToolStripMenuItem();
|
|
|
|
|
SaveToolStripMenuItem = new ToolStripMenuItem();
|
|
|
|
|
LoadToolStripMenuItem = new ToolStripMenuItem();
|
|
|
|
|
openFileDialog = new OpenFileDialog();
|
|
|
|
|
saveFileDialog = new SaveFileDialog();
|
2024-04-24 22:45:48 +04:00
|
|
|
|
groupBoxTools.SuspendLayout();
|
2024-04-25 02:02:47 +04:00
|
|
|
|
panelCompanyTools.SuspendLayout();
|
|
|
|
|
panelStorage.SuspendLayout();
|
2024-04-24 22:45:48 +04:00
|
|
|
|
((System.ComponentModel.ISupportInitialize)pictureBox).BeginInit();
|
2024-08-29 19:32:46 +04:00
|
|
|
|
menuStrip.SuspendLayout();
|
2024-04-24 22:45:48 +04:00
|
|
|
|
SuspendLayout();
|
|
|
|
|
//
|
|
|
|
|
// groupBoxTools
|
|
|
|
|
//
|
2024-04-25 02:02:47 +04:00
|
|
|
|
groupBoxTools.Controls.Add(panelCompanyTools);
|
|
|
|
|
groupBoxTools.Controls.Add(button1CreateCompany);
|
|
|
|
|
groupBoxTools.Controls.Add(panelStorage);
|
2024-04-24 22:45:48 +04:00
|
|
|
|
groupBoxTools.Controls.Add(comboBoxSelectorCompany);
|
|
|
|
|
groupBoxTools.Dock = DockStyle.Right;
|
2024-10-22 13:26:55 +04:00
|
|
|
|
groupBoxTools.Location = new Point(652, 24);
|
|
|
|
|
groupBoxTools.Margin = new Padding(2);
|
2024-04-24 22:45:48 +04:00
|
|
|
|
groupBoxTools.Name = "groupBoxTools";
|
2024-10-22 13:26:55 +04:00
|
|
|
|
groupBoxTools.Padding = new Padding(2);
|
|
|
|
|
groupBoxTools.Size = new Size(208, 490);
|
2024-04-24 22:45:48 +04:00
|
|
|
|
groupBoxTools.TabIndex = 0;
|
|
|
|
|
groupBoxTools.TabStop = false;
|
|
|
|
|
groupBoxTools.Text = "Инструменты";
|
|
|
|
|
//
|
2024-04-25 02:02:47 +04:00
|
|
|
|
// panelCompanyTools
|
|
|
|
|
//
|
|
|
|
|
panelCompanyTools.Controls.Add(buttonAddTrackedVehicle);
|
|
|
|
|
panelCompanyTools.Controls.Add(buttonRefresh);
|
|
|
|
|
panelCompanyTools.Controls.Add(maskedTextBox);
|
|
|
|
|
panelCompanyTools.Controls.Add(buttonGoToCheck);
|
|
|
|
|
panelCompanyTools.Controls.Add(buttonRemoveTrackedVehicle);
|
|
|
|
|
panelCompanyTools.Enabled = false;
|
2024-10-22 13:26:55 +04:00
|
|
|
|
panelCompanyTools.Location = new Point(5, 302);
|
|
|
|
|
panelCompanyTools.Margin = new Padding(2);
|
2024-04-25 02:02:47 +04:00
|
|
|
|
panelCompanyTools.Name = "panelCompanyTools";
|
2024-10-22 13:26:55 +04:00
|
|
|
|
panelCompanyTools.Size = new Size(197, 184);
|
2024-04-25 02:02:47 +04:00
|
|
|
|
panelCompanyTools.TabIndex = 10;
|
|
|
|
|
//
|
|
|
|
|
// buttonAddTrackedVehicle
|
|
|
|
|
//
|
|
|
|
|
buttonAddTrackedVehicle.Anchor = AnchorStyles.Top | AnchorStyles.Left | AnchorStyles.Right;
|
2024-10-22 13:26:55 +04:00
|
|
|
|
buttonAddTrackedVehicle.Location = new Point(3, 2);
|
|
|
|
|
buttonAddTrackedVehicle.Margin = new Padding(2);
|
2024-04-25 02:02:47 +04:00
|
|
|
|
buttonAddTrackedVehicle.Name = "buttonAddTrackedVehicle";
|
2024-10-22 13:26:55 +04:00
|
|
|
|
buttonAddTrackedVehicle.Size = new Size(191, 38);
|
2024-04-25 02:02:47 +04:00
|
|
|
|
buttonAddTrackedVehicle.TabIndex = 3;
|
|
|
|
|
buttonAddTrackedVehicle.Text = "Добавление гусеничной машины";
|
|
|
|
|
buttonAddTrackedVehicle.UseVisualStyleBackColor = true;
|
|
|
|
|
buttonAddTrackedVehicle.Click += ButtonAddTrackedVehicle_Click;
|
|
|
|
|
//
|
2024-04-24 22:45:48 +04:00
|
|
|
|
// buttonRefresh
|
|
|
|
|
//
|
|
|
|
|
buttonRefresh.Anchor = AnchorStyles.Top | AnchorStyles.Left | AnchorStyles.Right;
|
2024-10-22 13:26:55 +04:00
|
|
|
|
buttonRefresh.Location = new Point(3, 146);
|
|
|
|
|
buttonRefresh.Margin = new Padding(2);
|
2024-04-24 22:45:48 +04:00
|
|
|
|
buttonRefresh.Name = "buttonRefresh";
|
2024-10-22 13:26:55 +04:00
|
|
|
|
buttonRefresh.Size = new Size(190, 29);
|
2024-04-24 22:45:48 +04:00
|
|
|
|
buttonRefresh.TabIndex = 7;
|
|
|
|
|
buttonRefresh.Text = "Обновить";
|
|
|
|
|
buttonRefresh.UseVisualStyleBackColor = true;
|
|
|
|
|
buttonRefresh.Click += ButtonRefresh_Click_1;
|
|
|
|
|
//
|
2024-04-25 02:02:47 +04:00
|
|
|
|
// maskedTextBox
|
|
|
|
|
//
|
2024-10-22 13:26:55 +04:00
|
|
|
|
maskedTextBox.Location = new Point(4, 44);
|
|
|
|
|
maskedTextBox.Margin = new Padding(2);
|
2024-04-25 02:02:47 +04:00
|
|
|
|
maskedTextBox.Mask = "00";
|
|
|
|
|
maskedTextBox.Name = "maskedTextBox";
|
2024-10-22 13:26:55 +04:00
|
|
|
|
maskedTextBox.Size = new Size(191, 23);
|
2024-04-25 02:02:47 +04:00
|
|
|
|
maskedTextBox.TabIndex = 4;
|
|
|
|
|
maskedTextBox.ValidatingType = typeof(int);
|
|
|
|
|
maskedTextBox.MaskInputRejected += maskedTextBox1_MaskInputRejected;
|
|
|
|
|
//
|
2024-04-24 22:45:48 +04:00
|
|
|
|
// buttonGoToCheck
|
|
|
|
|
//
|
|
|
|
|
buttonGoToCheck.Anchor = AnchorStyles.Top | AnchorStyles.Left | AnchorStyles.Right;
|
2024-10-22 13:26:55 +04:00
|
|
|
|
buttonGoToCheck.Location = new Point(4, 104);
|
|
|
|
|
buttonGoToCheck.Margin = new Padding(2);
|
2024-04-24 22:45:48 +04:00
|
|
|
|
buttonGoToCheck.Name = "buttonGoToCheck";
|
2024-10-22 13:26:55 +04:00
|
|
|
|
buttonGoToCheck.Size = new Size(192, 38);
|
2024-04-24 22:45:48 +04:00
|
|
|
|
buttonGoToCheck.TabIndex = 6;
|
|
|
|
|
buttonGoToCheck.Text = "Передать на тесты";
|
|
|
|
|
buttonGoToCheck.UseVisualStyleBackColor = true;
|
|
|
|
|
buttonGoToCheck.Click += button1_Click;
|
|
|
|
|
//
|
|
|
|
|
// buttonRemoveTrackedVehicle
|
|
|
|
|
//
|
|
|
|
|
buttonRemoveTrackedVehicle.Anchor = AnchorStyles.Top | AnchorStyles.Left | AnchorStyles.Right;
|
2024-10-22 13:26:55 +04:00
|
|
|
|
buttonRemoveTrackedVehicle.Location = new Point(1, 71);
|
|
|
|
|
buttonRemoveTrackedVehicle.Margin = new Padding(2);
|
2024-04-24 22:45:48 +04:00
|
|
|
|
buttonRemoveTrackedVehicle.Name = "buttonRemoveTrackedVehicle";
|
2024-10-22 13:26:55 +04:00
|
|
|
|
buttonRemoveTrackedVehicle.Size = new Size(192, 29);
|
2024-04-24 22:45:48 +04:00
|
|
|
|
buttonRemoveTrackedVehicle.TabIndex = 5;
|
|
|
|
|
buttonRemoveTrackedVehicle.Text = "Удаление гусеничной машины";
|
|
|
|
|
buttonRemoveTrackedVehicle.UseVisualStyleBackColor = true;
|
|
|
|
|
buttonRemoveTrackedVehicle.Click += ButtonRemoveTrackedVehicle_Click;
|
|
|
|
|
//
|
2024-04-25 02:02:47 +04:00
|
|
|
|
// button1CreateCompany
|
2024-04-24 22:45:48 +04:00
|
|
|
|
//
|
2024-10-22 13:26:55 +04:00
|
|
|
|
button1CreateCompany.Location = new Point(7, 269);
|
|
|
|
|
button1CreateCompany.Margin = new Padding(2);
|
2024-04-25 02:02:47 +04:00
|
|
|
|
button1CreateCompany.Name = "button1CreateCompany";
|
2024-10-22 13:26:55 +04:00
|
|
|
|
button1CreateCompany.Size = new Size(193, 29);
|
2024-04-25 02:02:47 +04:00
|
|
|
|
button1CreateCompany.TabIndex = 9;
|
|
|
|
|
button1CreateCompany.Text = "Создать компанию";
|
|
|
|
|
button1CreateCompany.UseVisualStyleBackColor = true;
|
|
|
|
|
button1CreateCompany.Click += button1CreateCompany_Click;
|
2024-04-24 22:45:48 +04:00
|
|
|
|
//
|
2024-04-25 02:02:47 +04:00
|
|
|
|
// panelStorage
|
2024-04-24 22:45:48 +04:00
|
|
|
|
//
|
2024-04-25 02:02:47 +04:00
|
|
|
|
panelStorage.Controls.Add(buttonCollectionDel);
|
|
|
|
|
panelStorage.Controls.Add(listBoxCollection);
|
|
|
|
|
panelStorage.Controls.Add(buttonCollectionAdd);
|
|
|
|
|
panelStorage.Controls.Add(radioButtonList);
|
|
|
|
|
panelStorage.Controls.Add(radioButtonMassive);
|
|
|
|
|
panelStorage.Controls.Add(textBoxCollectionName);
|
|
|
|
|
panelStorage.Controls.Add(labelCollectionName);
|
|
|
|
|
panelStorage.Dock = DockStyle.Top;
|
2024-10-22 13:26:55 +04:00
|
|
|
|
panelStorage.Location = new Point(2, 18);
|
|
|
|
|
panelStorage.Margin = new Padding(2);
|
2024-04-25 02:02:47 +04:00
|
|
|
|
panelStorage.Name = "panelStorage";
|
2024-10-22 13:26:55 +04:00
|
|
|
|
panelStorage.Size = new Size(204, 220);
|
2024-04-25 02:02:47 +04:00
|
|
|
|
panelStorage.TabIndex = 8;
|
2024-04-24 22:45:48 +04:00
|
|
|
|
//
|
2024-04-25 02:02:47 +04:00
|
|
|
|
// buttonCollectionDel
|
2024-04-24 22:45:48 +04:00
|
|
|
|
//
|
2024-10-22 13:26:55 +04:00
|
|
|
|
buttonCollectionDel.Location = new Point(6, 183);
|
|
|
|
|
buttonCollectionDel.Margin = new Padding(2);
|
2024-04-25 02:02:47 +04:00
|
|
|
|
buttonCollectionDel.Name = "buttonCollectionDel";
|
2024-10-22 13:26:55 +04:00
|
|
|
|
buttonCollectionDel.Size = new Size(193, 35);
|
2024-04-25 02:02:47 +04:00
|
|
|
|
buttonCollectionDel.TabIndex = 6;
|
|
|
|
|
buttonCollectionDel.Text = "Удалить коллекцию";
|
|
|
|
|
buttonCollectionDel.UseVisualStyleBackColor = true;
|
|
|
|
|
buttonCollectionDel.Click += buttonCollectionDel_Click;
|
|
|
|
|
//
|
|
|
|
|
// listBoxCollection
|
|
|
|
|
//
|
|
|
|
|
listBoxCollection.FormattingEnabled = true;
|
2024-10-22 13:26:55 +04:00
|
|
|
|
listBoxCollection.ItemHeight = 15;
|
|
|
|
|
listBoxCollection.Location = new Point(7, 130);
|
|
|
|
|
listBoxCollection.Margin = new Padding(2);
|
2024-04-25 02:02:47 +04:00
|
|
|
|
listBoxCollection.Name = "listBoxCollection";
|
2024-10-22 13:26:55 +04:00
|
|
|
|
listBoxCollection.Size = new Size(191, 49);
|
2024-04-25 02:02:47 +04:00
|
|
|
|
listBoxCollection.TabIndex = 5;
|
|
|
|
|
//
|
|
|
|
|
// buttonCollectionAdd
|
|
|
|
|
//
|
2024-10-22 13:26:55 +04:00
|
|
|
|
buttonCollectionAdd.Location = new Point(7, 75);
|
|
|
|
|
buttonCollectionAdd.Margin = new Padding(2);
|
2024-04-25 02:02:47 +04:00
|
|
|
|
buttonCollectionAdd.Name = "buttonCollectionAdd";
|
2024-10-22 13:26:55 +04:00
|
|
|
|
buttonCollectionAdd.Size = new Size(193, 32);
|
2024-04-25 02:02:47 +04:00
|
|
|
|
buttonCollectionAdd.TabIndex = 4;
|
|
|
|
|
buttonCollectionAdd.Text = "Добавить коллекцию";
|
|
|
|
|
buttonCollectionAdd.UseVisualStyleBackColor = true;
|
|
|
|
|
buttonCollectionAdd.Click += buttonCollectionAdd_Click;
|
|
|
|
|
//
|
|
|
|
|
// radioButtonList
|
|
|
|
|
//
|
|
|
|
|
radioButtonList.AutoSize = true;
|
2024-10-22 13:26:55 +04:00
|
|
|
|
radioButtonList.Location = new Point(109, 52);
|
|
|
|
|
radioButtonList.Margin = new Padding(2);
|
2024-04-25 02:02:47 +04:00
|
|
|
|
radioButtonList.Name = "radioButtonList";
|
2024-10-22 13:26:55 +04:00
|
|
|
|
radioButtonList.Size = new Size(66, 19);
|
2024-04-25 02:02:47 +04:00
|
|
|
|
radioButtonList.TabIndex = 3;
|
|
|
|
|
radioButtonList.TabStop = true;
|
|
|
|
|
radioButtonList.Text = "Список";
|
|
|
|
|
radioButtonList.UseVisualStyleBackColor = true;
|
|
|
|
|
//
|
|
|
|
|
// radioButtonMassive
|
|
|
|
|
//
|
|
|
|
|
radioButtonMassive.AutoSize = true;
|
2024-10-22 13:26:55 +04:00
|
|
|
|
radioButtonMassive.Location = new Point(29, 52);
|
|
|
|
|
radioButtonMassive.Margin = new Padding(2);
|
2024-04-25 02:02:47 +04:00
|
|
|
|
radioButtonMassive.Name = "radioButtonMassive";
|
2024-10-22 13:26:55 +04:00
|
|
|
|
radioButtonMassive.Size = new Size(67, 19);
|
2024-04-25 02:02:47 +04:00
|
|
|
|
radioButtonMassive.TabIndex = 2;
|
|
|
|
|
radioButtonMassive.TabStop = true;
|
|
|
|
|
radioButtonMassive.Text = "Массив";
|
|
|
|
|
radioButtonMassive.UseVisualStyleBackColor = true;
|
|
|
|
|
radioButtonMassive.CheckedChanged += radioButtonMassive_CheckedChanged;
|
|
|
|
|
//
|
|
|
|
|
// textBoxCollectionName
|
|
|
|
|
//
|
2024-10-22 13:26:55 +04:00
|
|
|
|
textBoxCollectionName.Location = new Point(3, 25);
|
|
|
|
|
textBoxCollectionName.Margin = new Padding(2);
|
2024-04-25 02:02:47 +04:00
|
|
|
|
textBoxCollectionName.Name = "textBoxCollectionName";
|
2024-10-22 13:26:55 +04:00
|
|
|
|
textBoxCollectionName.Size = new Size(196, 23);
|
2024-04-25 02:02:47 +04:00
|
|
|
|
textBoxCollectionName.TabIndex = 1;
|
|
|
|
|
//
|
|
|
|
|
// labelCollectionName
|
|
|
|
|
//
|
|
|
|
|
labelCollectionName.AutoSize = true;
|
2024-10-22 13:26:55 +04:00
|
|
|
|
labelCollectionName.Location = new Point(29, 8);
|
|
|
|
|
labelCollectionName.Margin = new Padding(2, 0, 2, 0);
|
2024-04-25 02:02:47 +04:00
|
|
|
|
labelCollectionName.Name = "labelCollectionName";
|
2024-10-22 13:26:55 +04:00
|
|
|
|
labelCollectionName.Size = new Size(125, 15);
|
2024-04-25 02:02:47 +04:00
|
|
|
|
labelCollectionName.TabIndex = 0;
|
|
|
|
|
labelCollectionName.Text = "Название коллекции:";
|
2024-04-24 22:45:48 +04:00
|
|
|
|
//
|
|
|
|
|
// comboBoxSelectorCompany
|
|
|
|
|
//
|
|
|
|
|
comboBoxSelectorCompany.Anchor = AnchorStyles.Top | AnchorStyles.Left | AnchorStyles.Right;
|
|
|
|
|
comboBoxSelectorCompany.DropDownStyle = ComboBoxStyle.DropDownList;
|
|
|
|
|
comboBoxSelectorCompany.FormattingEnabled = true;
|
|
|
|
|
comboBoxSelectorCompany.Items.AddRange(new object[] { "Хранилище" });
|
2024-10-22 13:26:55 +04:00
|
|
|
|
comboBoxSelectorCompany.Location = new Point(7, 242);
|
|
|
|
|
comboBoxSelectorCompany.Margin = new Padding(2);
|
2024-04-24 22:45:48 +04:00
|
|
|
|
comboBoxSelectorCompany.Name = "comboBoxSelectorCompany";
|
2024-10-22 13:26:55 +04:00
|
|
|
|
comboBoxSelectorCompany.Size = new Size(194, 23);
|
2024-04-24 22:45:48 +04:00
|
|
|
|
comboBoxSelectorCompany.TabIndex = 1;
|
|
|
|
|
comboBoxSelectorCompany.SelectedIndexChanged += comboBoxSelectorCompany_SelectedIndexChanged;
|
|
|
|
|
//
|
|
|
|
|
// pictureBox
|
|
|
|
|
//
|
|
|
|
|
pictureBox.Dock = DockStyle.Fill;
|
2024-10-22 13:26:55 +04:00
|
|
|
|
pictureBox.Location = new Point(0, 24);
|
|
|
|
|
pictureBox.Margin = new Padding(2);
|
2024-04-24 22:45:48 +04:00
|
|
|
|
pictureBox.Name = "pictureBox";
|
2024-10-22 13:26:55 +04:00
|
|
|
|
pictureBox.Size = new Size(652, 490);
|
2024-04-24 22:45:48 +04:00
|
|
|
|
pictureBox.TabIndex = 1;
|
|
|
|
|
pictureBox.TabStop = false;
|
|
|
|
|
pictureBox.Click += pictureBox1_Click;
|
|
|
|
|
//
|
2024-08-29 19:32:46 +04:00
|
|
|
|
// menuStrip
|
|
|
|
|
//
|
|
|
|
|
menuStrip.ImageScalingSize = new Size(24, 24);
|
|
|
|
|
menuStrip.Items.AddRange(new ToolStripItem[] { файлToolStripMenuItem });
|
|
|
|
|
menuStrip.Location = new Point(0, 0);
|
|
|
|
|
menuStrip.Name = "menuStrip";
|
2024-10-22 13:26:55 +04:00
|
|
|
|
menuStrip.Padding = new Padding(4, 1, 0, 1);
|
|
|
|
|
menuStrip.Size = new Size(860, 24);
|
2024-08-29 19:32:46 +04:00
|
|
|
|
menuStrip.TabIndex = 2;
|
|
|
|
|
menuStrip.Text = "menuStrip1";
|
|
|
|
|
//
|
|
|
|
|
// файлToolStripMenuItem
|
|
|
|
|
//
|
|
|
|
|
файлToolStripMenuItem.DropDownItems.AddRange(new ToolStripItem[] { SaveToolStripMenuItem, LoadToolStripMenuItem });
|
|
|
|
|
файлToolStripMenuItem.Name = "файлToolStripMenuItem";
|
2024-10-22 13:26:55 +04:00
|
|
|
|
файлToolStripMenuItem.Size = new Size(48, 22);
|
2024-08-29 19:32:46 +04:00
|
|
|
|
файлToolStripMenuItem.Text = "Файл";
|
|
|
|
|
//
|
|
|
|
|
// SaveToolStripMenuItem
|
|
|
|
|
//
|
|
|
|
|
SaveToolStripMenuItem.Name = "SaveToolStripMenuItem";
|
|
|
|
|
SaveToolStripMenuItem.ShortcutKeys = Keys.Control | Keys.S;
|
2024-10-22 13:26:55 +04:00
|
|
|
|
SaveToolStripMenuItem.Size = new Size(181, 22);
|
2024-08-29 19:32:46 +04:00
|
|
|
|
SaveToolStripMenuItem.Text = "Сохранение";
|
|
|
|
|
SaveToolStripMenuItem.Click += SaveToolStripMenuItem_Click;
|
|
|
|
|
//
|
|
|
|
|
// LoadToolStripMenuItem
|
|
|
|
|
//
|
|
|
|
|
LoadToolStripMenuItem.Name = "LoadToolStripMenuItem";
|
|
|
|
|
LoadToolStripMenuItem.ShortcutKeys = Keys.Control | Keys.L;
|
2024-10-22 13:26:55 +04:00
|
|
|
|
LoadToolStripMenuItem.Size = new Size(181, 22);
|
2024-08-29 19:32:46 +04:00
|
|
|
|
LoadToolStripMenuItem.Text = "Загрузка";
|
|
|
|
|
LoadToolStripMenuItem.Click += LoadToolStripMenuItem_Click;
|
|
|
|
|
//
|
|
|
|
|
// openFileDialog
|
|
|
|
|
//
|
|
|
|
|
openFileDialog.FileName = "openFileDialog1";
|
|
|
|
|
openFileDialog.Filter = "txt file | *txt";
|
|
|
|
|
//
|
|
|
|
|
// saveFileDialog
|
|
|
|
|
//
|
|
|
|
|
saveFileDialog.Filter = "txt file | *txt";
|
|
|
|
|
//
|
2024-04-24 22:45:48 +04:00
|
|
|
|
// FormTrackedVehicleCollection
|
|
|
|
|
//
|
2024-10-22 13:26:55 +04:00
|
|
|
|
AutoScaleDimensions = new SizeF(7F, 15F);
|
2024-04-24 22:45:48 +04:00
|
|
|
|
AutoScaleMode = AutoScaleMode.Font;
|
2024-10-22 13:26:55 +04:00
|
|
|
|
ClientSize = new Size(860, 514);
|
2024-04-24 22:45:48 +04:00
|
|
|
|
Controls.Add(pictureBox);
|
|
|
|
|
Controls.Add(groupBoxTools);
|
2024-08-29 19:32:46 +04:00
|
|
|
|
Controls.Add(menuStrip);
|
|
|
|
|
MainMenuStrip = menuStrip;
|
2024-10-22 13:26:55 +04:00
|
|
|
|
Margin = new Padding(2);
|
2024-04-24 22:45:48 +04:00
|
|
|
|
Name = "FormTrackedVehicleCollection";
|
|
|
|
|
Text = "Коллекция гусеничных машин";
|
|
|
|
|
Load += FormTrackedVehicleCollection_Load;
|
|
|
|
|
groupBoxTools.ResumeLayout(false);
|
2024-04-25 02:02:47 +04:00
|
|
|
|
panelCompanyTools.ResumeLayout(false);
|
|
|
|
|
panelCompanyTools.PerformLayout();
|
|
|
|
|
panelStorage.ResumeLayout(false);
|
|
|
|
|
panelStorage.PerformLayout();
|
2024-04-24 22:45:48 +04:00
|
|
|
|
((System.ComponentModel.ISupportInitialize)pictureBox).EndInit();
|
2024-08-29 19:32:46 +04:00
|
|
|
|
menuStrip.ResumeLayout(false);
|
|
|
|
|
menuStrip.PerformLayout();
|
2024-04-24 22:45:48 +04:00
|
|
|
|
ResumeLayout(false);
|
2024-08-29 19:32:46 +04:00
|
|
|
|
PerformLayout();
|
2024-04-24 22:45:48 +04:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
|
|
private GroupBox groupBoxTools;
|
|
|
|
|
private ComboBox comboBoxSelectorCompany;
|
|
|
|
|
private Button buttonAddTrackedVehicle;
|
|
|
|
|
private PictureBox pictureBox;
|
|
|
|
|
private Button buttonRemoveTrackedVehicle;
|
|
|
|
|
private MaskedTextBox maskedTextBox;
|
|
|
|
|
private Button buttonGoToCheck;
|
|
|
|
|
private Button buttonRefresh;
|
2024-04-25 02:02:47 +04:00
|
|
|
|
private Panel panelStorage;
|
|
|
|
|
private TextBox textBoxCollectionName;
|
|
|
|
|
private Label labelCollectionName;
|
|
|
|
|
private RadioButton radioButtonList;
|
|
|
|
|
private RadioButton radioButtonMassive;
|
|
|
|
|
private ListBox listBoxCollection;
|
|
|
|
|
private Button buttonCollectionAdd;
|
|
|
|
|
private Button button1CreateCompany;
|
|
|
|
|
private Button buttonCollectionDel;
|
|
|
|
|
private Panel panelCompanyTools;
|
2024-08-29 19:32:46 +04:00
|
|
|
|
private MenuStrip menuStrip;
|
|
|
|
|
private ToolStripMenuItem файлToolStripMenuItem;
|
|
|
|
|
private ToolStripMenuItem SaveToolStripMenuItem;
|
|
|
|
|
private ToolStripMenuItem LoadToolStripMenuItem;
|
|
|
|
|
private OpenFileDialog openFileDialog;
|
|
|
|
|
private SaveFileDialog saveFileDialog;
|
2024-04-24 22:45:48 +04:00
|
|
|
|
}
|
|
|
|
|
}
|