200 lines
8.7 KiB
C#
200 lines
8.7 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()
|
||
{
|
||
panelLocomotiveCollection = new Panel();
|
||
groupBoxSets = new GroupBox();
|
||
textBoxSetName = new TextBox();
|
||
buttonDeleteSet = new Button();
|
||
listBoxStorages = new ListBox();
|
||
buttonAddSet = new Button();
|
||
LabelOnPanel = new Label();
|
||
maskedTextBoxNumber = new MaskedTextBox();
|
||
ButtonRefreshCollection = new Button();
|
||
ButtonRemoveLocomotive = new Button();
|
||
ButtonAddLocomotive = new Button();
|
||
pictureBoxCollection = new PictureBox();
|
||
panelLocomotiveCollection.SuspendLayout();
|
||
groupBoxSets.SuspendLayout();
|
||
((System.ComponentModel.ISupportInitialize)pictureBoxCollection).BeginInit();
|
||
SuspendLayout();
|
||
//
|
||
// panelLocomotiveCollection
|
||
//
|
||
panelLocomotiveCollection.AccessibleDescription = "";
|
||
panelLocomotiveCollection.AccessibleName = "";
|
||
panelLocomotiveCollection.Controls.Add(groupBoxSets);
|
||
panelLocomotiveCollection.Controls.Add(LabelOnPanel);
|
||
panelLocomotiveCollection.Controls.Add(maskedTextBoxNumber);
|
||
panelLocomotiveCollection.Controls.Add(ButtonRefreshCollection);
|
||
panelLocomotiveCollection.Controls.Add(ButtonRemoveLocomotive);
|
||
panelLocomotiveCollection.Controls.Add(ButtonAddLocomotive);
|
||
panelLocomotiveCollection.Font = new Font("Segoe UI", 9F, FontStyle.Regular, GraphicsUnit.Point);
|
||
panelLocomotiveCollection.Location = new Point(660, 2);
|
||
panelLocomotiveCollection.Name = "panelLocomotiveCollection";
|
||
panelLocomotiveCollection.Size = new Size(248, 584);
|
||
panelLocomotiveCollection.TabIndex = 0;
|
||
panelLocomotiveCollection.Tag = "Инструменты";
|
||
//
|
||
// groupBoxSets
|
||
//
|
||
groupBoxSets.Controls.Add(textBoxSetName);
|
||
groupBoxSets.Controls.Add(buttonDeleteSet);
|
||
groupBoxSets.Controls.Add(listBoxStorages);
|
||
groupBoxSets.Controls.Add(buttonAddSet);
|
||
groupBoxSets.Location = new Point(3, 15);
|
||
groupBoxSets.Name = "groupBoxSets";
|
||
groupBoxSets.Size = new Size(242, 324);
|
||
groupBoxSets.TabIndex = 5;
|
||
groupBoxSets.TabStop = false;
|
||
groupBoxSets.Text = "Наборы";
|
||
//
|
||
// textBoxSetName
|
||
//
|
||
textBoxSetName.Location = new Point(6, 38);
|
||
textBoxSetName.Name = "textBoxSetName";
|
||
textBoxSetName.Size = new Size(226, 23);
|
||
textBoxSetName.TabIndex = 3;
|
||
//
|
||
// buttonDeleteSet
|
||
//
|
||
buttonDeleteSet.Location = new Point(6, 216);
|
||
buttonDeleteSet.Name = "buttonDeleteSet";
|
||
buttonDeleteSet.Size = new Size(226, 45);
|
||
buttonDeleteSet.TabIndex = 2;
|
||
buttonDeleteSet.Text = "Удалить набор";
|
||
buttonDeleteSet.UseVisualStyleBackColor = true;
|
||
buttonDeleteSet.Click += buttonDeleteSet_Click;
|
||
//
|
||
// listBoxStorages
|
||
//
|
||
listBoxStorages.FormattingEnabled = true;
|
||
listBoxStorages.ItemHeight = 15;
|
||
listBoxStorages.Location = new Point(6, 116);
|
||
listBoxStorages.Name = "listBoxStorages";
|
||
listBoxStorages.Size = new Size(226, 94);
|
||
listBoxStorages.TabIndex = 1;
|
||
listBoxStorages.SelectedIndexChanged += listBoxStorages_SelectedIndexChanged;
|
||
//
|
||
// buttonAddSet
|
||
//
|
||
buttonAddSet.Location = new Point(6, 67);
|
||
buttonAddSet.Name = "buttonAddSet";
|
||
buttonAddSet.Size = new Size(226, 34);
|
||
buttonAddSet.TabIndex = 0;
|
||
buttonAddSet.Text = "Добавить набор";
|
||
buttonAddSet.UseVisualStyleBackColor = true;
|
||
buttonAddSet.Click += buttonAddSet_Click;
|
||
//
|
||
// LabelOnPanel
|
||
//
|
||
LabelOnPanel.AutoSize = true;
|
||
LabelOnPanel.Location = new Point(3, -3);
|
||
LabelOnPanel.Name = "LabelOnPanel";
|
||
LabelOnPanel.Size = new Size(83, 15);
|
||
LabelOnPanel.TabIndex = 4;
|
||
LabelOnPanel.Text = "Инструменты";
|
||
//
|
||
// maskedTextBoxNumber
|
||
//
|
||
maskedTextBoxNumber.Location = new Point(35, 408);
|
||
maskedTextBoxNumber.Name = "maskedTextBoxNumber";
|
||
maskedTextBoxNumber.Size = new Size(176, 23);
|
||
maskedTextBoxNumber.TabIndex = 3;
|
||
//
|
||
// ButtonRefreshCollection
|
||
//
|
||
ButtonRefreshCollection.Location = new Point(3, 530);
|
||
ButtonRefreshCollection.Name = "ButtonRefreshCollection";
|
||
ButtonRefreshCollection.Size = new Size(242, 43);
|
||
ButtonRefreshCollection.TabIndex = 2;
|
||
ButtonRefreshCollection.Text = " Обновить коллекцию";
|
||
ButtonRefreshCollection.UseVisualStyleBackColor = true;
|
||
ButtonRefreshCollection.Click += buttonRefreshCollection_Click;
|
||
//
|
||
// ButtonRemoveLocomotive
|
||
//
|
||
ButtonRemoveLocomotive.Location = new Point(3, 460);
|
||
ButtonRemoveLocomotive.Name = "ButtonRemoveLocomotive";
|
||
ButtonRemoveLocomotive.Size = new Size(242, 39);
|
||
ButtonRemoveLocomotive.TabIndex = 1;
|
||
ButtonRemoveLocomotive.Text = "Удалить локомотив";
|
||
ButtonRemoveLocomotive.UseVisualStyleBackColor = true;
|
||
ButtonRemoveLocomotive.Click += buttonRemoveLocomotive_Click;
|
||
//
|
||
// ButtonAddLocomotive
|
||
//
|
||
ButtonAddLocomotive.Location = new Point(3, 345);
|
||
ButtonAddLocomotive.Name = "ButtonAddLocomotive";
|
||
ButtonAddLocomotive.Size = new Size(242, 39);
|
||
ButtonAddLocomotive.TabIndex = 0;
|
||
ButtonAddLocomotive.Text = "Добавить локомотив";
|
||
ButtonAddLocomotive.UseVisualStyleBackColor = true;
|
||
ButtonAddLocomotive.Click += buttonAddLocomotive_Click;
|
||
//
|
||
// pictureBoxCollection
|
||
//
|
||
pictureBoxCollection.Location = new Point(2, 2);
|
||
pictureBoxCollection.Name = "pictureBoxCollection";
|
||
pictureBoxCollection.Size = new Size(655, 584);
|
||
pictureBoxCollection.TabIndex = 1;
|
||
pictureBoxCollection.TabStop = false;
|
||
//
|
||
// FormLocomotiveCollection
|
||
//
|
||
AutoScaleDimensions = new SizeF(7F, 15F);
|
||
AutoScaleMode = AutoScaleMode.Font;
|
||
ClientSize = new Size(909, 587);
|
||
Controls.Add(pictureBoxCollection);
|
||
Controls.Add(panelLocomotiveCollection);
|
||
Name = "FormLocomotiveCollection";
|
||
Text = "Набор локомотивов";
|
||
panelLocomotiveCollection.ResumeLayout(false);
|
||
panelLocomotiveCollection.PerformLayout();
|
||
groupBoxSets.ResumeLayout(false);
|
||
groupBoxSets.PerformLayout();
|
||
((System.ComponentModel.ISupportInitialize)pictureBoxCollection).EndInit();
|
||
ResumeLayout(false);
|
||
}
|
||
#endregion
|
||
|
||
private Panel panelLocomotiveCollection;
|
||
private Button ButtonAddLocomotive;
|
||
private Button ButtonRemoveLocomotive;
|
||
private Button ButtonRefreshCollection;
|
||
private PictureBox pictureBoxCollection;
|
||
private MaskedTextBox maskedTextBoxNumber;
|
||
private Label LabelOnPanel;
|
||
private GroupBox groupBoxSets;
|
||
private Button buttonDeleteSet;
|
||
private ListBox listBoxStorages;
|
||
private Button buttonAddSet;
|
||
private TextBox textBoxSetName;
|
||
}
|
||
} |