PIbd-12_Alkin_D.V_AirBomber.../AirBomber/FormAirPlaneCollection.Designer.cs

355 lines
16 KiB
C#
Raw Normal View History

2024-04-09 13:54:43 +04:00
namespace AirBomber
2024-04-09 08:38:25 +04:00
{
2024-04-09 13:54:43 +04:00
partial class FormAirPlaneCollection
2024-04-09 08:38:25 +04:00
{
2024-04-09 13:54:43 +04:00
/// <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)
2024-04-09 08:38:25 +04:00
{
2024-04-09 13:54:43 +04:00
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
2024-04-09 08:38:25 +04:00
}
2024-04-09 13:54:43 +04:00
#region Windows Form Designer generated code
2024-04-09 08:38:25 +04:00
2024-04-09 13:54:43 +04:00
/// <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-05-06 21:29:03 +04:00
panelCompanyTools = new Panel();
buttonAddAirPlane = new Button();
maskedTextBox = new MaskedTextBox();
buttonRefresh = new Button();
buttonDelAirPlane = new Button();
buttonGoToCheck = new Button();
2024-04-23 08:53:35 +04:00
buttonCreateCompany = 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-09 13:54:43 +04:00
comboBoxSelectorCompany = new ComboBox();
pictureBox = new PictureBox();
2024-05-21 01:03:29 +04:00
menuStrip = new MenuStrip();
файлToolStripMenuItem = new ToolStripMenuItem();
saveToolStripMenuItem = new ToolStripMenuItem();
loadToolStripMenuItem = new ToolStripMenuItem();
saveFileDialog = new SaveFileDialog();
openFileDialog = new OpenFileDialog();
2024-04-09 13:54:43 +04:00
groupBoxTools.SuspendLayout();
2024-05-06 21:29:03 +04:00
panelCompanyTools.SuspendLayout();
2024-04-23 08:53:35 +04:00
panelStorage.SuspendLayout();
2024-04-09 13:54:43 +04:00
((System.ComponentModel.ISupportInitialize)pictureBox).BeginInit();
2024-05-21 01:03:29 +04:00
menuStrip.SuspendLayout();
2024-04-09 13:54:43 +04:00
SuspendLayout();
//
// groupBoxTools
//
2024-04-23 08:53:35 +04:00
groupBoxTools.Controls.Add(panelCompanyTools);
groupBoxTools.Controls.Add(buttonCreateCompany);
groupBoxTools.Controls.Add(panelStorage);
2024-04-09 13:54:43 +04:00
groupBoxTools.Controls.Add(comboBoxSelectorCompany);
groupBoxTools.Dock = DockStyle.Right;
2024-05-21 01:03:29 +04:00
groupBoxTools.Location = new Point(859, 0);
groupBoxTools.Margin = new Padding(3, 4, 3, 4);
2024-04-09 13:54:43 +04:00
groupBoxTools.Name = "groupBoxTools";
2024-05-21 01:03:29 +04:00
groupBoxTools.Padding = new Padding(3, 4, 3, 4);
groupBoxTools.Size = new Size(238, 859);
2024-04-09 13:54:43 +04:00
groupBoxTools.TabIndex = 0;
groupBoxTools.TabStop = false;
groupBoxTools.Text = "Инструманты";
//
2024-05-06 21:29:03 +04:00
// panelCompanyTools
//
panelCompanyTools.Controls.Add(buttonAddAirPlane);
panelCompanyTools.Controls.Add(maskedTextBox);
panelCompanyTools.Controls.Add(buttonRefresh);
panelCompanyTools.Controls.Add(buttonDelAirPlane);
panelCompanyTools.Controls.Add(buttonGoToCheck);
2024-05-21 01:03:29 +04:00
panelCompanyTools.Location = new Point(16, 456);
2024-05-06 21:29:03 +04:00
panelCompanyTools.Name = "panelCompanyTools";
2024-05-21 01:03:29 +04:00
panelCompanyTools.Size = new Size(210, 285);
2024-05-06 21:29:03 +04:00
panelCompanyTools.TabIndex = 8;
//
// buttonAddAirPlane
//
buttonAddAirPlane.Anchor = AnchorStyles.Top | AnchorStyles.Left | AnchorStyles.Right;
2024-05-21 01:03:29 +04:00
buttonAddAirPlane.Location = new Point(7, 4);
buttonAddAirPlane.Margin = new Padding(3, 4, 3, 4);
2024-05-06 21:29:03 +04:00
buttonAddAirPlane.Name = "buttonAddAirPlane";
2024-05-21 01:03:29 +04:00
buttonAddAirPlane.Size = new Size(200, 55);
2024-05-06 21:29:03 +04:00
buttonAddAirPlane.TabIndex = 1;
buttonAddAirPlane.Text = "Добавление самолета";
buttonAddAirPlane.UseVisualStyleBackColor = true;
buttonAddAirPlane.Click += buttonAddAirPlane_Click;
//
// maskedTextBox
//
2024-05-21 01:03:29 +04:00
maskedTextBox.Location = new Point(7, 131);
maskedTextBox.Margin = new Padding(3, 4, 3, 4);
2024-05-06 21:29:03 +04:00
maskedTextBox.Mask = "00";
maskedTextBox.Name = "maskedTextBox";
2024-05-21 01:03:29 +04:00
maskedTextBox.Size = new Size(201, 27);
2024-05-06 21:29:03 +04:00
maskedTextBox.TabIndex = 3;
maskedTextBox.ValidatingType = typeof(int);
//
// buttonRefresh
//
2024-05-21 01:03:29 +04:00
buttonRefresh.Location = new Point(7, 243);
buttonRefresh.Margin = new Padding(3, 4, 3, 4);
2024-05-06 21:29:03 +04:00
buttonRefresh.Name = "buttonRefresh";
2024-05-21 01:03:29 +04:00
buttonRefresh.Size = new Size(200, 29);
2024-05-06 21:29:03 +04:00
buttonRefresh.TabIndex = 6;
buttonRefresh.Text = "Обновить";
buttonRefresh.UseVisualStyleBackColor = true;
buttonRefresh.Click += ButtonRefresh_Click;
//
// buttonDelAirPlane
//
buttonDelAirPlane.Anchor = AnchorStyles.Top | AnchorStyles.Left | AnchorStyles.Right;
2024-05-21 01:03:29 +04:00
buttonDelAirPlane.Location = new Point(7, 165);
buttonDelAirPlane.Margin = new Padding(3, 4, 3, 4);
2024-05-06 21:29:03 +04:00
buttonDelAirPlane.Name = "buttonDelAirPlane";
2024-05-21 01:03:29 +04:00
buttonDelAirPlane.Size = new Size(200, 31);
2024-05-06 21:29:03 +04:00
buttonDelAirPlane.TabIndex = 4;
buttonDelAirPlane.Text = "Удалить Самолет";
buttonDelAirPlane.UseVisualStyleBackColor = true;
buttonDelAirPlane.Click += ButtonRemoveAirPlane_Click;
//
// buttonGoToCheck
//
2024-05-21 01:03:29 +04:00
buttonGoToCheck.Location = new Point(7, 205);
buttonGoToCheck.Margin = new Padding(3, 4, 3, 4);
2024-05-06 21:29:03 +04:00
buttonGoToCheck.Name = "buttonGoToCheck";
2024-05-21 01:03:29 +04:00
buttonGoToCheck.Size = new Size(200, 29);
2024-05-06 21:29:03 +04:00
buttonGoToCheck.TabIndex = 5;
buttonGoToCheck.Text = "Передать на тесты";
buttonGoToCheck.UseVisualStyleBackColor = true;
buttonGoToCheck.Click += ButtonGoToCheck_Click;
//
2024-04-23 08:53:35 +04:00
// buttonCreateCompany
//
2024-05-21 01:03:29 +04:00
buttonCreateCompany.Location = new Point(16, 365);
2024-04-23 08:53:35 +04:00
buttonCreateCompany.Name = "buttonCreateCompany";
2024-05-21 01:03:29 +04:00
buttonCreateCompany.Size = new Size(207, 49);
2024-04-23 08:53:35 +04:00
buttonCreateCompany.TabIndex = 7;
buttonCreateCompany.Text = "Создать компанию";
buttonCreateCompany.UseVisualStyleBackColor = true;
buttonCreateCompany.Click += buttonCreateCompany_Click;
//
// panelStorage
//
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-05-21 01:03:29 +04:00
panelStorage.Location = new Point(3, 24);
2024-04-23 08:53:35 +04:00
panelStorage.Name = "panelStorage";
2024-05-21 01:03:29 +04:00
panelStorage.Size = new Size(232, 304);
2024-04-23 08:53:35 +04:00
panelStorage.TabIndex = 7;
//
// buttonCollectionDel
//
2024-05-21 01:03:29 +04:00
buttonCollectionDel.Location = new Point(13, 271);
2024-04-23 08:53:35 +04:00
buttonCollectionDel.Name = "buttonCollectionDel";
2024-05-21 01:03:29 +04:00
buttonCollectionDel.Size = new Size(210, 29);
2024-04-23 08:53:35 +04:00
buttonCollectionDel.TabIndex = 6;
buttonCollectionDel.Text = "Удалить коллецию";
buttonCollectionDel.UseVisualStyleBackColor = true;
buttonCollectionDel.Click += buttonCollectionDel_Click;
//
// listBoxCollection
//
listBoxCollection.FormattingEnabled = true;
2024-05-21 01:03:29 +04:00
listBoxCollection.ItemHeight = 20;
listBoxCollection.Location = new Point(3, 161);
2024-04-23 08:53:35 +04:00
listBoxCollection.Name = "listBoxCollection";
2024-05-21 01:03:29 +04:00
listBoxCollection.Size = new Size(220, 104);
2024-04-23 08:53:35 +04:00
listBoxCollection.TabIndex = 5;
//
// buttonCollectionAdd
//
2024-05-21 01:03:29 +04:00
buttonCollectionAdd.Location = new Point(13, 125);
2024-04-23 08:53:35 +04:00
buttonCollectionAdd.Name = "buttonCollectionAdd";
2024-05-21 01:03:29 +04:00
buttonCollectionAdd.Size = new Size(216, 29);
2024-04-23 08:53:35 +04:00
buttonCollectionAdd.TabIndex = 4;
buttonCollectionAdd.Text = "Добавить коллецию";
buttonCollectionAdd.UseVisualStyleBackColor = true;
buttonCollectionAdd.Click += buttonCollectionAdd_Click;
//
// radioButtonList
//
radioButtonList.AutoSize = true;
2024-05-21 01:03:29 +04:00
radioButtonList.Location = new Point(101, 96);
2024-04-23 08:53:35 +04:00
radioButtonList.Name = "radioButtonList";
2024-05-21 01:03:29 +04:00
radioButtonList.Size = new Size(80, 24);
2024-04-23 08:53:35 +04:00
radioButtonList.TabIndex = 3;
radioButtonList.TabStop = true;
radioButtonList.Text = "Список";
radioButtonList.UseVisualStyleBackColor = true;
//
// radioButtonMassive
//
radioButtonMassive.AutoSize = true;
2024-05-21 01:03:29 +04:00
radioButtonMassive.Location = new Point(13, 96);
2024-04-23 08:53:35 +04:00
radioButtonMassive.Name = "radioButtonMassive";
2024-05-21 01:03:29 +04:00
radioButtonMassive.Size = new Size(82, 24);
2024-04-23 08:53:35 +04:00
radioButtonMassive.TabIndex = 2;
radioButtonMassive.TabStop = true;
radioButtonMassive.Text = "Массив";
radioButtonMassive.UseVisualStyleBackColor = true;
//
// textBoxCollectionName
//
2024-05-21 01:03:29 +04:00
textBoxCollectionName.Location = new Point(3, 53);
2024-04-23 08:53:35 +04:00
textBoxCollectionName.Name = "textBoxCollectionName";
2024-05-21 01:03:29 +04:00
textBoxCollectionName.Size = new Size(226, 27);
2024-04-23 08:53:35 +04:00
textBoxCollectionName.TabIndex = 1;
//
// labelCollectionName
//
labelCollectionName.AutoSize = true;
2024-05-21 01:03:29 +04:00
labelCollectionName.Location = new Point(13, 12);
2024-04-23 08:53:35 +04:00
labelCollectionName.Name = "labelCollectionName";
2024-05-21 01:03:29 +04:00
labelCollectionName.Size = new Size(151, 20);
2024-04-23 08:53:35 +04:00
labelCollectionName.TabIndex = 0;
labelCollectionName.Text = "Название коллеции:";
//
2024-04-09 13:54:43 +04:00
// comboBoxSelectorCompany
//
comboBoxSelectorCompany.Anchor = AnchorStyles.Top | AnchorStyles.Left | AnchorStyles.Right;
comboBoxSelectorCompany.DropDownStyle = ComboBoxStyle.DropDownList;
comboBoxSelectorCompany.FormattingEnabled = true;
comboBoxSelectorCompany.Items.AddRange(new object[] { "Хранилище" });
2024-05-21 01:03:29 +04:00
comboBoxSelectorCompany.Location = new Point(16, 331);
comboBoxSelectorCompany.Margin = new Padding(3, 4, 3, 4);
2024-04-09 13:54:43 +04:00
comboBoxSelectorCompany.Name = "comboBoxSelectorCompany";
2024-05-21 01:03:29 +04:00
comboBoxSelectorCompany.Size = new Size(210, 28);
2024-04-09 13:54:43 +04:00
comboBoxSelectorCompany.TabIndex = 0;
comboBoxSelectorCompany.SelectedIndexChanged += comboBoxSelectorCompany_SelectedIndexChanged;
//
// pictureBox
//
pictureBox.Dock = DockStyle.Fill;
pictureBox.Location = new Point(0, 0);
2024-05-21 01:03:29 +04:00
pictureBox.Margin = new Padding(3, 4, 3, 4);
2024-04-09 13:54:43 +04:00
pictureBox.Name = "pictureBox";
2024-05-21 01:03:29 +04:00
pictureBox.Size = new Size(859, 859);
2024-04-09 13:54:43 +04:00
pictureBox.TabIndex = 1;
pictureBox.TabStop = false;
//
2024-05-21 01:03:29 +04:00
// menuStrip
//
menuStrip.ImageScalingSize = new Size(20, 20);
menuStrip.Items.AddRange(new ToolStripItem[] { файлToolStripMenuItem });
menuStrip.Location = new Point(0, 0);
menuStrip.Name = "menuStrip";
menuStrip.Padding = new Padding(7, 3, 0, 3);
menuStrip.Size = new Size(859, 30);
menuStrip.TabIndex = 3;
menuStrip.Text = "menuStrip1";
//
// файлToolStripMenuItem
//
файлToolStripMenuItem.DropDownItems.AddRange(new ToolStripItem[] { saveToolStripMenuItem, loadToolStripMenuItem });
файлToolStripMenuItem.Name = айлToolStripMenuItem";
файлToolStripMenuItem.Size = new Size(59, 24);
файлToolStripMenuItem.Text = "Файл";
файлToolStripMenuItem.Click += saveToolStripMenuItem_Click;
//
// saveToolStripMenuItem
//
saveToolStripMenuItem.Name = "saveToolStripMenuItem";
saveToolStripMenuItem.ShortcutKeys = Keys.Control | Keys.S;
saveToolStripMenuItem.Size = new Size(227, 26);
saveToolStripMenuItem.Text = "Сохранение";
saveToolStripMenuItem.Click += saveToolStripMenuItem_Click;
//
// loadToolStripMenuItem
//
loadToolStripMenuItem.Name = "loadToolStripMenuItem";
loadToolStripMenuItem.ShortcutKeys = Keys.Control | Keys.L;
loadToolStripMenuItem.Size = new Size(227, 26);
loadToolStripMenuItem.Text = "Загрузка";
loadToolStripMenuItem.Click += loadToolStripMenuItem_Click;
//
// saveFileDialog
//
saveFileDialog.Filter = "txt file | *.txt";
//
// openFileDialog
//
openFileDialog.Filter = "txt file | *.txt";
//
2024-04-09 13:54:43 +04:00
// FormAirPlaneCollection
//
2024-05-21 01:03:29 +04:00
AutoScaleDimensions = new SizeF(8F, 20F);
2024-04-09 13:54:43 +04:00
AutoScaleMode = AutoScaleMode.Font;
2024-05-21 01:03:29 +04:00
ClientSize = new Size(1097, 859);
Controls.Add(menuStrip);
2024-04-09 13:54:43 +04:00
Controls.Add(pictureBox);
Controls.Add(groupBoxTools);
2024-05-21 01:03:29 +04:00
Margin = new Padding(3, 4, 3, 4);
2024-04-09 13:54:43 +04:00
Name = "FormAirPlaneCollection";
Text = "FormAirPlaneCollection";
2024-04-22 22:20:47 +04:00
Load += FormAirPlaneCollection_Load;
2024-04-09 13:54:43 +04:00
groupBoxTools.ResumeLayout(false);
2024-05-06 21:29:03 +04:00
panelCompanyTools.ResumeLayout(false);
panelCompanyTools.PerformLayout();
2024-04-23 08:53:35 +04:00
panelStorage.ResumeLayout(false);
panelStorage.PerformLayout();
2024-04-09 13:54:43 +04:00
((System.ComponentModel.ISupportInitialize)pictureBox).EndInit();
2024-05-21 01:03:29 +04:00
menuStrip.ResumeLayout(false);
menuStrip.PerformLayout();
2024-04-09 13:54:43 +04:00
ResumeLayout(false);
2024-05-21 01:03:29 +04:00
PerformLayout();
2024-04-09 13:54:43 +04:00
}
2024-04-09 08:38:25 +04:00
2024-04-09 13:54:43 +04:00
#endregion
2024-04-09 08:38:25 +04:00
2024-04-09 13:54:43 +04:00
private GroupBox groupBoxTools;
private Button buttonAddAirPlane;
private ComboBox comboBoxSelectorCompany;
private PictureBox pictureBox;
private Button buttonGoToCheck;
private Button buttonDelAirPlane;
private MaskedTextBox maskedTextBox;
private Button buttonRefresh;
2024-04-23 08:53:35 +04:00
private Panel panelStorage;
private TextBox textBoxCollectionName;
private Label labelCollectionName;
private RadioButton radioButtonList;
private RadioButton radioButtonMassive;
private Button buttonCollectionAdd;
private Button buttonCollectionDel;
private ListBox listBoxCollection;
private Button buttonCreateCompany;
private Panel panelCompanyTools;
2024-05-21 01:03:29 +04:00
private MenuStrip menuStrip;
private ToolStripMenuItem файлToolStripMenuItem;
private ToolStripMenuItem saveToolStripMenuItem;
private ToolStripMenuItem loadToolStripMenuItem;
private SaveFileDialog saveFileDialog;
private OpenFileDialog openFileDialog;
2024-04-09 13:54:43 +04:00
}
2024-04-09 08:38:25 +04:00
}