303 lines
14 KiB
C#
303 lines
14 KiB
C#
namespace ProjectFighterJet
|
|
{
|
|
partial class FormJetCollection
|
|
{
|
|
/// <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();
|
|
panelCompanyTools = new Panel();
|
|
buttonAddJet = new Button();
|
|
buttonAddFighterJet = new Button();
|
|
maskedTextBoxPosition = new MaskedTextBox();
|
|
buttonGoToCheck = new Button();
|
|
buttonRemoveJet = new Button();
|
|
buttonRefresh = new Button();
|
|
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();
|
|
comboBoxSelectorCompany = new ComboBox();
|
|
pictureBox = new PictureBox();
|
|
groupBoxTools.SuspendLayout();
|
|
panelCompanyTools.SuspendLayout();
|
|
panelStorage.SuspendLayout();
|
|
((System.ComponentModel.ISupportInitialize)pictureBox).BeginInit();
|
|
SuspendLayout();
|
|
//
|
|
// groupBoxTools
|
|
//
|
|
groupBoxTools.Controls.Add(panelCompanyTools);
|
|
groupBoxTools.Controls.Add(buttonCreateCompany);
|
|
groupBoxTools.Controls.Add(panelStorage);
|
|
groupBoxTools.Controls.Add(comboBoxSelectorCompany);
|
|
groupBoxTools.Dock = DockStyle.Right;
|
|
groupBoxTools.Location = new Point(911, 0);
|
|
groupBoxTools.Name = "groupBoxTools";
|
|
groupBoxTools.Size = new Size(208, 665);
|
|
groupBoxTools.TabIndex = 0;
|
|
groupBoxTools.TabStop = false;
|
|
groupBoxTools.Text = "Инструменты ";
|
|
//
|
|
// panelCompanyTools
|
|
//
|
|
panelCompanyTools.Controls.Add(buttonAddJet);
|
|
panelCompanyTools.Controls.Add(buttonAddFighterJet);
|
|
panelCompanyTools.Controls.Add(maskedTextBoxPosition);
|
|
panelCompanyTools.Controls.Add(buttonGoToCheck);
|
|
panelCompanyTools.Controls.Add(buttonRemoveJet);
|
|
panelCompanyTools.Controls.Add(buttonRefresh);
|
|
panelCompanyTools.Enabled = false;
|
|
panelCompanyTools.Location = new Point(9, 378);
|
|
panelCompanyTools.Name = "panelCompanyTools";
|
|
panelCompanyTools.Size = new Size(199, 287);
|
|
panelCompanyTools.TabIndex = 8;
|
|
//
|
|
// buttonAddJet
|
|
//
|
|
buttonAddJet.Anchor = AnchorStyles.Top | AnchorStyles.Left | AnchorStyles.Right;
|
|
buttonAddJet.Location = new Point(3, 3);
|
|
buttonAddJet.Name = "buttonAddJet";
|
|
buttonAddJet.Size = new Size(190, 48);
|
|
buttonAddJet.TabIndex = 1;
|
|
buttonAddJet.Text = "Добавление самолёта";
|
|
buttonAddJet.UseVisualStyleBackColor = true;
|
|
buttonAddJet.Click += buttonAddJet_Click;
|
|
//
|
|
// buttonAddFighterJet
|
|
//
|
|
buttonAddFighterJet.Anchor = AnchorStyles.Top | AnchorStyles.Left | AnchorStyles.Right;
|
|
buttonAddFighterJet.Location = new Point(3, 57);
|
|
buttonAddFighterJet.Name = "buttonAddFighterJet";
|
|
buttonAddFighterJet.Size = new Size(190, 48);
|
|
buttonAddFighterJet.TabIndex = 2;
|
|
buttonAddFighterJet.Text = "Добавление истрибителя";
|
|
buttonAddFighterJet.UseVisualStyleBackColor = true;
|
|
buttonAddFighterJet.Click += buttonAddFighterJet_Click;
|
|
//
|
|
// maskedTextBoxPosition
|
|
//
|
|
maskedTextBoxPosition.Location = new Point(3, 111);
|
|
maskedTextBoxPosition.Mask = "00";
|
|
maskedTextBoxPosition.Name = "maskedTextBoxPosition";
|
|
maskedTextBoxPosition.Size = new Size(202, 27);
|
|
maskedTextBoxPosition.TabIndex = 3;
|
|
maskedTextBoxPosition.ValidatingType = typeof(int);
|
|
//
|
|
// buttonGoToCheck
|
|
//
|
|
buttonGoToCheck.Anchor = AnchorStyles.Top | AnchorStyles.Left | AnchorStyles.Right;
|
|
buttonGoToCheck.Location = new Point(3, 182);
|
|
buttonGoToCheck.Name = "buttonGoToCheck";
|
|
buttonGoToCheck.Size = new Size(190, 33);
|
|
buttonGoToCheck.TabIndex = 6;
|
|
buttonGoToCheck.Text = "Передать на тесты";
|
|
buttonGoToCheck.UseVisualStyleBackColor = true;
|
|
buttonGoToCheck.Click += buttonGoToCheck_Click;
|
|
//
|
|
// buttonRemoveJet
|
|
//
|
|
buttonRemoveJet.Anchor = AnchorStyles.Top | AnchorStyles.Left | AnchorStyles.Right;
|
|
buttonRemoveJet.Location = new Point(3, 144);
|
|
buttonRemoveJet.Name = "buttonRemoveJet";
|
|
buttonRemoveJet.Size = new Size(190, 32);
|
|
buttonRemoveJet.TabIndex = 4;
|
|
buttonRemoveJet.Text = "Удалить самолёт";
|
|
buttonRemoveJet.UseVisualStyleBackColor = true;
|
|
buttonRemoveJet.Click += buttonRemoveJet_Click;
|
|
//
|
|
// buttonRefresh
|
|
//
|
|
buttonRefresh.Anchor = AnchorStyles.Top | AnchorStyles.Left | AnchorStyles.Right;
|
|
buttonRefresh.Location = new Point(3, 221);
|
|
buttonRefresh.Name = "buttonRefresh";
|
|
buttonRefresh.Size = new Size(190, 33);
|
|
buttonRefresh.TabIndex = 5;
|
|
buttonRefresh.Text = "Обновить";
|
|
buttonRefresh.UseVisualStyleBackColor = true;
|
|
buttonRefresh.Click += buttonRefresh_Click;
|
|
//
|
|
// buttonCreateCompany
|
|
//
|
|
buttonCreateCompany.Location = new Point(6, 343);
|
|
buttonCreateCompany.Name = "buttonCreateCompany";
|
|
buttonCreateCompany.Size = new Size(196, 29);
|
|
buttonCreateCompany.TabIndex = 7;
|
|
buttonCreateCompany.Text = "Создать компанию";
|
|
buttonCreateCompany.UseVisualStyleBackColor = true;
|
|
buttonCreateCompany.Click += buttonCreateCompany_Click;
|
|
//
|
|
// panelStorage
|
|
//
|
|
panelStorage.BackColor = SystemColors.Control;
|
|
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;
|
|
panelStorage.Location = new Point(3, 23);
|
|
panelStorage.Name = "panelStorage";
|
|
panelStorage.Size = new Size(202, 280);
|
|
panelStorage.TabIndex = 7;
|
|
//
|
|
// buttonCollectionDel
|
|
//
|
|
buttonCollectionDel.Location = new Point(3, 248);
|
|
buttonCollectionDel.Name = "buttonCollectionDel";
|
|
buttonCollectionDel.Size = new Size(196, 29);
|
|
buttonCollectionDel.TabIndex = 6;
|
|
buttonCollectionDel.Text = "Удалить коллекцию";
|
|
buttonCollectionDel.UseVisualStyleBackColor = true;
|
|
buttonCollectionDel.Click += buttonCollectionDel_Click;
|
|
//
|
|
// listBoxCollection
|
|
//
|
|
listBoxCollection.FormattingEnabled = true;
|
|
listBoxCollection.ItemHeight = 20;
|
|
listBoxCollection.Location = new Point(3, 138);
|
|
listBoxCollection.Name = "listBoxCollection";
|
|
listBoxCollection.Size = new Size(196, 104);
|
|
listBoxCollection.TabIndex = 5;
|
|
//
|
|
// buttonCollectionAdd
|
|
//
|
|
buttonCollectionAdd.Location = new Point(3, 103);
|
|
buttonCollectionAdd.Name = "buttonCollectionAdd";
|
|
buttonCollectionAdd.Size = new Size(196, 29);
|
|
buttonCollectionAdd.TabIndex = 4;
|
|
buttonCollectionAdd.Text = "Добавить коллекцию";
|
|
buttonCollectionAdd.UseVisualStyleBackColor = true;
|
|
buttonCollectionAdd.Click += buttonCollectionAdd_Click;
|
|
//
|
|
// radioButtonList
|
|
//
|
|
radioButtonList.AutoSize = true;
|
|
radioButtonList.Location = new Point(113, 73);
|
|
radioButtonList.Name = "radioButtonList";
|
|
radioButtonList.Size = new Size(80, 24);
|
|
radioButtonList.TabIndex = 3;
|
|
radioButtonList.TabStop = true;
|
|
radioButtonList.Text = "Список";
|
|
radioButtonList.UseVisualStyleBackColor = true;
|
|
//
|
|
// radioButtonMassive
|
|
//
|
|
radioButtonMassive.AutoSize = true;
|
|
radioButtonMassive.Location = new Point(6, 73);
|
|
radioButtonMassive.Name = "radioButtonMassive";
|
|
radioButtonMassive.Size = new Size(82, 24);
|
|
radioButtonMassive.TabIndex = 2;
|
|
radioButtonMassive.TabStop = true;
|
|
radioButtonMassive.Text = "Массив\r\n";
|
|
radioButtonMassive.UseVisualStyleBackColor = true;
|
|
//
|
|
// textBoxCollectionName
|
|
//
|
|
textBoxCollectionName.Location = new Point(3, 35);
|
|
textBoxCollectionName.Name = "textBoxCollectionName";
|
|
textBoxCollectionName.Size = new Size(196, 27);
|
|
textBoxCollectionName.TabIndex = 1;
|
|
//
|
|
// labelCollectionName
|
|
//
|
|
labelCollectionName.AutoSize = true;
|
|
labelCollectionName.Location = new Point(22, 12);
|
|
labelCollectionName.Name = "labelCollectionName";
|
|
labelCollectionName.Size = new Size(155, 20);
|
|
labelCollectionName.TabIndex = 0;
|
|
labelCollectionName.Text = "Название коллекции";
|
|
//
|
|
// comboBoxSelectorCompany
|
|
//
|
|
comboBoxSelectorCompany.Anchor = AnchorStyles.Top | AnchorStyles.Left | AnchorStyles.Right;
|
|
comboBoxSelectorCompany.AutoCompleteCustomSource.AddRange(new string[] { "Хранилище" });
|
|
comboBoxSelectorCompany.DropDownStyle = ComboBoxStyle.DropDownList;
|
|
comboBoxSelectorCompany.FormattingEnabled = true;
|
|
comboBoxSelectorCompany.Items.AddRange(new object[] { "Хранилище" });
|
|
comboBoxSelectorCompany.Location = new Point(6, 309);
|
|
comboBoxSelectorCompany.Name = "comboBoxSelectorCompany";
|
|
comboBoxSelectorCompany.Size = new Size(196, 28);
|
|
comboBoxSelectorCompany.TabIndex = 0;
|
|
comboBoxSelectorCompany.SelectedIndexChanged += comboBoxSelectorCompany_SelectedIndexChanged;
|
|
//
|
|
// pictureBox
|
|
//
|
|
pictureBox.Dock = DockStyle.Fill;
|
|
pictureBox.Location = new Point(0, 0);
|
|
pictureBox.Name = "pictureBox";
|
|
pictureBox.Size = new Size(911, 665);
|
|
pictureBox.TabIndex = 1;
|
|
pictureBox.TabStop = false;
|
|
//
|
|
// FormJetCollection
|
|
//
|
|
AutoScaleDimensions = new SizeF(8F, 20F);
|
|
AutoScaleMode = AutoScaleMode.Font;
|
|
ClientSize = new Size(1119, 665);
|
|
Controls.Add(pictureBox);
|
|
Controls.Add(groupBoxTools);
|
|
Name = "FormJetCollection";
|
|
Text = "Коллекция самолётов";
|
|
groupBoxTools.ResumeLayout(false);
|
|
panelCompanyTools.ResumeLayout(false);
|
|
panelCompanyTools.PerformLayout();
|
|
panelStorage.ResumeLayout(false);
|
|
panelStorage.PerformLayout();
|
|
((System.ComponentModel.ISupportInitialize)pictureBox).EndInit();
|
|
ResumeLayout(false);
|
|
}
|
|
|
|
#endregion
|
|
|
|
private GroupBox groupBoxTools;
|
|
private ComboBox comboBoxSelectorCompany;
|
|
private Button buttonAddJet;
|
|
private MaskedTextBox maskedTextBoxPosition;
|
|
private Button buttonAddFighterJet;
|
|
private PictureBox pictureBox;
|
|
private Button buttonRefresh;
|
|
private Button buttonRemoveJet;
|
|
private Button buttonGoToCheck;
|
|
private Panel panelStorage;
|
|
private RadioButton radioButtonMassive;
|
|
private TextBox textBoxCollectionName;
|
|
private Label labelCollectionName;
|
|
private Button buttonCollectionDel;
|
|
private ListBox listBoxCollection;
|
|
private Button buttonCollectionAdd;
|
|
private RadioButton radioButtonList;
|
|
private Button buttonCreateCompany;
|
|
private Panel panelCompanyTools;
|
|
}
|
|
} |