368 lines
16 KiB
C#
368 lines
16 KiB
C#
namespace ProjectElectricLocomotive
|
||
{
|
||
partial class FormLocomotiveCollection
|
||
{
|
||
/// <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();
|
||
buttonAddLocomotive = new Button();
|
||
maskedTextBox = new MaskedTextBox();
|
||
buttonDelLocomotive = new Button();
|
||
buttonRefresh = new Button();
|
||
buttonGoToCheck = new Button();
|
||
buttonCreateCompany = new Button();
|
||
labelCollectionName = new Label();
|
||
panelStorage = new Panel();
|
||
buttonCollectionDel = new Button();
|
||
listBoxCollection = new ListBox();
|
||
buttonCollectionAdd = new Button();
|
||
radioButtonList = new RadioButton();
|
||
radioButtonMassive = new RadioButton();
|
||
textBoxCollectionName = new TextBox();
|
||
comboBoxSelectorCompany = new ComboBox();
|
||
pictureBox = new PictureBox();
|
||
menuStrip = new MenuStrip();
|
||
файлToolStripMenuItem = new ToolStripMenuItem();
|
||
SaveToolStripMenuItem = new ToolStripMenuItem();
|
||
LoadToolStripMenuItem = new ToolStripMenuItem();
|
||
openFileDialog = new OpenFileDialog();
|
||
saveFileDialog = new SaveFileDialog();
|
||
buttonSortByColor = new Button();
|
||
buttonSortByType = new Button();
|
||
groupBoxTools.SuspendLayout();
|
||
panelCompanyTools.SuspendLayout();
|
||
panelStorage.SuspendLayout();
|
||
((System.ComponentModel.ISupportInitialize)pictureBox).BeginInit();
|
||
menuStrip.SuspendLayout();
|
||
SuspendLayout();
|
||
//
|
||
// groupBoxTools
|
||
//
|
||
groupBoxTools.Controls.Add(panelCompanyTools);
|
||
groupBoxTools.Controls.Add(buttonCreateCompany);
|
||
groupBoxTools.Controls.Add(labelCollectionName);
|
||
groupBoxTools.Controls.Add(panelStorage);
|
||
groupBoxTools.Controls.Add(comboBoxSelectorCompany);
|
||
groupBoxTools.Dock = DockStyle.Right;
|
||
groupBoxTools.Location = new Point(589, 33);
|
||
groupBoxTools.Name = "groupBoxTools";
|
||
groupBoxTools.Size = new Size(503, 417);
|
||
groupBoxTools.TabIndex = 0;
|
||
groupBoxTools.TabStop = false;
|
||
groupBoxTools.Text = "Инструменты";
|
||
//
|
||
// panelCompanyTools
|
||
//
|
||
panelCompanyTools.Controls.Add(buttonSortByColor);
|
||
panelCompanyTools.Controls.Add(buttonAddLocomotive);
|
||
panelCompanyTools.Controls.Add(buttonSortByType);
|
||
panelCompanyTools.Controls.Add(maskedTextBox);
|
||
panelCompanyTools.Controls.Add(buttonDelLocomotive);
|
||
panelCompanyTools.Controls.Add(buttonRefresh);
|
||
panelCompanyTools.Controls.Add(buttonGoToCheck);
|
||
panelCompanyTools.Enabled = false;
|
||
panelCompanyTools.Location = new Point(6, 30);
|
||
panelCompanyTools.Name = "panelCompanyTools";
|
||
panelCompanyTools.Size = new Size(211, 379);
|
||
panelCompanyTools.TabIndex = 4;
|
||
//
|
||
// buttonAddLocomotive
|
||
//
|
||
buttonAddLocomotive.Location = new Point(12, 8);
|
||
buttonAddLocomotive.Name = "buttonAddLocomotive";
|
||
buttonAddLocomotive.Size = new Size(193, 63);
|
||
buttonAddLocomotive.TabIndex = 1;
|
||
buttonAddLocomotive.Text = "Добавление Локомотива";
|
||
buttonAddLocomotive.UseVisualStyleBackColor = true;
|
||
buttonAddLocomotive.Click += buttonAddLocomotive_Click;
|
||
//
|
||
// maskedTextBox
|
||
//
|
||
maskedTextBox.Location = new Point(12, 82);
|
||
maskedTextBox.Mask = "00";
|
||
maskedTextBox.Name = "maskedTextBox";
|
||
maskedTextBox.Size = new Size(193, 31);
|
||
maskedTextBox.TabIndex = 4;
|
||
maskedTextBox.ValidatingType = typeof(int);
|
||
//
|
||
// buttonDelLocomotive
|
||
//
|
||
buttonDelLocomotive.Location = new Point(12, 119);
|
||
buttonDelLocomotive.Name = "buttonDelLocomotive";
|
||
buttonDelLocomotive.Size = new Size(193, 63);
|
||
buttonDelLocomotive.TabIndex = 5;
|
||
buttonDelLocomotive.Text = "Удаление Локомотива";
|
||
buttonDelLocomotive.UseVisualStyleBackColor = true;
|
||
buttonDelLocomotive.Click += buttonDelLocomotive_Click;
|
||
//
|
||
// buttonRefresh
|
||
//
|
||
buttonRefresh.Location = new Point(12, 233);
|
||
buttonRefresh.Name = "buttonRefresh";
|
||
buttonRefresh.Size = new Size(193, 39);
|
||
buttonRefresh.TabIndex = 7;
|
||
buttonRefresh.Text = "Обновить";
|
||
buttonRefresh.UseVisualStyleBackColor = true;
|
||
buttonRefresh.Click += buttonRefresh_Click;
|
||
//
|
||
// buttonGoToCheck
|
||
//
|
||
buttonGoToCheck.Location = new Point(12, 188);
|
||
buttonGoToCheck.Name = "buttonGoToCheck";
|
||
buttonGoToCheck.Size = new Size(193, 39);
|
||
buttonGoToCheck.TabIndex = 6;
|
||
buttonGoToCheck.Text = "Передать на тесты";
|
||
buttonGoToCheck.UseVisualStyleBackColor = true;
|
||
buttonGoToCheck.Click += buttonGoToCheck_Click;
|
||
//
|
||
// buttonCreateCompany
|
||
//
|
||
buttonCreateCompany.Location = new Point(223, 375);
|
||
buttonCreateCompany.Name = "buttonCreateCompany";
|
||
buttonCreateCompany.Size = new Size(246, 34);
|
||
buttonCreateCompany.TabIndex = 10;
|
||
buttonCreateCompany.Text = "Создать компанию";
|
||
buttonCreateCompany.UseVisualStyleBackColor = true;
|
||
buttonCreateCompany.Click += buttonCreateCompany_Click;
|
||
//
|
||
// labelCollectionName
|
||
//
|
||
labelCollectionName.AutoSize = true;
|
||
labelCollectionName.Location = new Point(242, 9);
|
||
labelCollectionName.Name = "labelCollectionName";
|
||
labelCollectionName.Size = new Size(182, 25);
|
||
labelCollectionName.TabIndex = 0;
|
||
labelCollectionName.Text = "Название коллекции";
|
||
//
|
||
// 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.Location = new Point(220, 30);
|
||
panelStorage.Name = "panelStorage";
|
||
panelStorage.Size = new Size(254, 300);
|
||
panelStorage.TabIndex = 8;
|
||
//
|
||
// buttonCollectionDel
|
||
//
|
||
buttonCollectionDel.Location = new Point(3, 254);
|
||
buttonCollectionDel.Name = "buttonCollectionDel";
|
||
buttonCollectionDel.Size = new Size(246, 34);
|
||
buttonCollectionDel.TabIndex = 13;
|
||
buttonCollectionDel.Text = "Удалить коллекцию";
|
||
buttonCollectionDel.UseVisualStyleBackColor = true;
|
||
buttonCollectionDel.Click += buttonCollectionDel_Click;
|
||
//
|
||
// listBoxCollection
|
||
//
|
||
listBoxCollection.FormattingEnabled = true;
|
||
listBoxCollection.ItemHeight = 25;
|
||
listBoxCollection.Location = new Point(3, 119);
|
||
listBoxCollection.Name = "listBoxCollection";
|
||
listBoxCollection.Size = new Size(246, 129);
|
||
listBoxCollection.TabIndex = 12;
|
||
//
|
||
// buttonCollectionAdd
|
||
//
|
||
buttonCollectionAdd.Location = new Point(3, 79);
|
||
buttonCollectionAdd.Name = "buttonCollectionAdd";
|
||
buttonCollectionAdd.Size = new Size(246, 34);
|
||
buttonCollectionAdd.TabIndex = 9;
|
||
buttonCollectionAdd.Text = "Добавить коллекцию";
|
||
buttonCollectionAdd.UseVisualStyleBackColor = true;
|
||
buttonCollectionAdd.Click += buttonCollectionAdd_Click;
|
||
//
|
||
// radioButtonList
|
||
//
|
||
radioButtonList.AutoSize = true;
|
||
radioButtonList.Location = new Point(120, 44);
|
||
radioButtonList.Name = "radioButtonList";
|
||
radioButtonList.Size = new Size(96, 29);
|
||
radioButtonList.TabIndex = 11;
|
||
radioButtonList.TabStop = true;
|
||
radioButtonList.Text = "Список";
|
||
radioButtonList.UseVisualStyleBackColor = true;
|
||
//
|
||
// radioButtonMassive
|
||
//
|
||
radioButtonMassive.AutoSize = true;
|
||
radioButtonMassive.Location = new Point(3, 44);
|
||
radioButtonMassive.Name = "radioButtonMassive";
|
||
radioButtonMassive.Size = new Size(98, 29);
|
||
radioButtonMassive.TabIndex = 10;
|
||
radioButtonMassive.TabStop = true;
|
||
radioButtonMassive.Text = "Массив";
|
||
radioButtonMassive.UseVisualStyleBackColor = true;
|
||
//
|
||
// textBoxCollectionName
|
||
//
|
||
textBoxCollectionName.Location = new Point(3, 7);
|
||
textBoxCollectionName.Name = "textBoxCollectionName";
|
||
textBoxCollectionName.Size = new Size(246, 31);
|
||
textBoxCollectionName.TabIndex = 9;
|
||
//
|
||
// comboBoxSelectorCompany
|
||
//
|
||
comboBoxSelectorCompany.Anchor = AnchorStyles.Top | AnchorStyles.Left | AnchorStyles.Right;
|
||
comboBoxSelectorCompany.DropDownStyle = ComboBoxStyle.DropDownList;
|
||
comboBoxSelectorCompany.FormattingEnabled = true;
|
||
comboBoxSelectorCompany.Items.AddRange(new object[] { "Депо" });
|
||
comboBoxSelectorCompany.Location = new Point(223, 336);
|
||
comboBoxSelectorCompany.Name = "comboBoxSelectorCompany";
|
||
comboBoxSelectorCompany.Size = new Size(246, 33);
|
||
comboBoxSelectorCompany.TabIndex = 0;
|
||
comboBoxSelectorCompany.SelectedIndexChanged += comboBoxSelectorCompany_SelectedIndexChanged;
|
||
//
|
||
// pictureBox
|
||
//
|
||
pictureBox.Dock = DockStyle.Fill;
|
||
pictureBox.Location = new Point(0, 33);
|
||
pictureBox.Name = "pictureBox";
|
||
pictureBox.Size = new Size(589, 417);
|
||
pictureBox.TabIndex = 3;
|
||
pictureBox.TabStop = false;
|
||
//
|
||
// menuStrip
|
||
//
|
||
menuStrip.ImageScalingSize = new Size(24, 24);
|
||
menuStrip.Items.AddRange(new ToolStripItem[] { файлToolStripMenuItem });
|
||
menuStrip.Location = new Point(0, 0);
|
||
menuStrip.Name = "menuStrip";
|
||
menuStrip.Size = new Size(1092, 33);
|
||
menuStrip.TabIndex = 4;
|
||
menuStrip.Text = "menuStrip1";
|
||
//
|
||
// файлToolStripMenuItem
|
||
//
|
||
файлToolStripMenuItem.DropDownItems.AddRange(new ToolStripItem[] { SaveToolStripMenuItem, LoadToolStripMenuItem });
|
||
файлToolStripMenuItem.Name = "файлToolStripMenuItem";
|
||
файлToolStripMenuItem.Size = new Size(69, 29);
|
||
файлToolStripMenuItem.Text = "Файл";
|
||
//
|
||
// SaveToolStripMenuItem
|
||
//
|
||
SaveToolStripMenuItem.Name = "SaveToolStripMenuItem";
|
||
SaveToolStripMenuItem.ShortcutKeys = Keys.Control | Keys.S;
|
||
SaveToolStripMenuItem.Size = new Size(273, 34);
|
||
SaveToolStripMenuItem.Text = "Сохранение";
|
||
SaveToolStripMenuItem.Click += SaveToolStripMenuItem_Click;
|
||
//
|
||
// LoadToolStripMenuItem
|
||
//
|
||
LoadToolStripMenuItem.Name = "LoadToolStripMenuItem";
|
||
LoadToolStripMenuItem.ShortcutKeys = Keys.Control | Keys.L;
|
||
LoadToolStripMenuItem.Size = new Size(273, 34);
|
||
LoadToolStripMenuItem.Text = "Загрузка";
|
||
LoadToolStripMenuItem.Click += LoadToolStripMenuItem_Click;
|
||
//
|
||
// openFileDialog
|
||
//
|
||
openFileDialog.FileName = "openFileDialog1";
|
||
//
|
||
// saveFileDialog
|
||
//
|
||
saveFileDialog.Filter = "txt file | *.txt";
|
||
//
|
||
// buttonSortByColor
|
||
//
|
||
buttonSortByColor.Location = new Point(12, 323);
|
||
buttonSortByColor.Name = "buttonSortByColor";
|
||
buttonSortByColor.Size = new Size(193, 37);
|
||
buttonSortByColor.TabIndex = 9;
|
||
buttonSortByColor.Text = "Сортировка по цвет";
|
||
buttonSortByColor.UseVisualStyleBackColor = true;
|
||
buttonSortByColor.Click += buttonSortByColor_Click;
|
||
//
|
||
// buttonSortByType
|
||
//
|
||
buttonSortByType.Location = new Point(12, 278);
|
||
buttonSortByType.Name = "buttonSortByType";
|
||
buttonSortByType.Size = new Size(193, 39);
|
||
buttonSortByType.TabIndex = 8;
|
||
buttonSortByType.Text = "Сортировка по типу";
|
||
buttonSortByType.UseVisualStyleBackColor = true;
|
||
buttonSortByType.Click += buttonSortByType_Click;
|
||
//
|
||
// FormLocomotiveCollection
|
||
//
|
||
AutoScaleDimensions = new SizeF(10F, 25F);
|
||
AutoScaleMode = AutoScaleMode.Font;
|
||
ClientSize = new Size(1092, 450);
|
||
Controls.Add(pictureBox);
|
||
Controls.Add(groupBoxTools);
|
||
Controls.Add(menuStrip);
|
||
MainMenuStrip = menuStrip;
|
||
Name = "FormLocomotiveCollection";
|
||
Text = "Коллекция Локомотивов";
|
||
groupBoxTools.ResumeLayout(false);
|
||
groupBoxTools.PerformLayout();
|
||
panelCompanyTools.ResumeLayout(false);
|
||
panelCompanyTools.PerformLayout();
|
||
panelStorage.ResumeLayout(false);
|
||
panelStorage.PerformLayout();
|
||
((System.ComponentModel.ISupportInitialize)pictureBox).EndInit();
|
||
menuStrip.ResumeLayout(false);
|
||
menuStrip.PerformLayout();
|
||
ResumeLayout(false);
|
||
PerformLayout();
|
||
}
|
||
|
||
#endregion
|
||
|
||
private GroupBox groupBoxTools;
|
||
private ComboBox comboBoxSelectorCompany;
|
||
private Button buttonAddLocomotive;
|
||
private MaskedTextBox maskedTextBox;
|
||
private PictureBox pictureBox;
|
||
private Button buttonDelLocomotive;
|
||
private Button buttonRefresh;
|
||
private Button buttonGoToCheck;
|
||
private Panel panelStorage;
|
||
private Label labelCollectionName;
|
||
private Button buttonCollectionAdd;
|
||
private RadioButton radioButtonList;
|
||
private RadioButton radioButtonMassive;
|
||
private TextBox textBoxCollectionName;
|
||
private Button buttonCollectionDel;
|
||
private ListBox listBoxCollection;
|
||
private Button buttonCreateCompany;
|
||
private Panel panelCompanyTools;
|
||
private MenuStrip menuStrip;
|
||
private ToolStripMenuItem файлToolStripMenuItem;
|
||
private ToolStripMenuItem SaveToolStripMenuItem;
|
||
private ToolStripMenuItem LoadToolStripMenuItem;
|
||
private OpenFileDialog openFileDialog;
|
||
private SaveFileDialog saveFileDialog;
|
||
private Button buttonSortByColor;
|
||
private Button buttonSortByType;
|
||
}
|
||
} |