121 lines
4.0 KiB
C#
121 lines
4.0 KiB
C#
|
using System.ComponentModel;
|
|||
|
|
|||
|
namespace ElectricLocomotive;
|
|||
|
|
|||
|
partial class FormLocomotivCollection {
|
|||
|
/// <summary>
|
|||
|
/// Required designer variable.
|
|||
|
/// </summary>
|
|||
|
private 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() {
|
|||
|
toolsBox = new GroupBox();
|
|||
|
refreshCollection = new Button();
|
|||
|
deleteLoco = new Button();
|
|||
|
input = new TextBox();
|
|||
|
addLocomotiv = new Button();
|
|||
|
collectionPictureBox = new PictureBox();
|
|||
|
toolsBox.SuspendLayout();
|
|||
|
((ISupportInitialize)collectionPictureBox).BeginInit();
|
|||
|
SuspendLayout();
|
|||
|
//
|
|||
|
// toolsBox
|
|||
|
//
|
|||
|
toolsBox.Controls.Add(refreshCollection);
|
|||
|
toolsBox.Controls.Add(deleteLoco);
|
|||
|
toolsBox.Controls.Add(input);
|
|||
|
toolsBox.Controls.Add(addLocomotiv);
|
|||
|
toolsBox.Location = new Point(944, 12);
|
|||
|
toolsBox.Name = "toolsBox";
|
|||
|
toolsBox.Size = new Size(309, 707);
|
|||
|
toolsBox.TabIndex = 0;
|
|||
|
toolsBox.TabStop = false;
|
|||
|
toolsBox.Text = "Инструменты";
|
|||
|
//
|
|||
|
// refreshCollection
|
|||
|
//
|
|||
|
refreshCollection.Location = new Point(19, 324);
|
|||
|
refreshCollection.Name = "refreshCollection";
|
|||
|
refreshCollection.Size = new Size(271, 59);
|
|||
|
refreshCollection.TabIndex = 3;
|
|||
|
refreshCollection.Text = "Обновить коллекцию";
|
|||
|
refreshCollection.UseVisualStyleBackColor = true;
|
|||
|
refreshCollection.Click += refreshCollection_Click;
|
|||
|
//
|
|||
|
// deleteLoco
|
|||
|
//
|
|||
|
deleteLoco.Location = new Point(21, 199);
|
|||
|
deleteLoco.Name = "deleteLoco";
|
|||
|
deleteLoco.Size = new Size(271, 59);
|
|||
|
deleteLoco.TabIndex = 2;
|
|||
|
deleteLoco.Text = "Удалить электровоз";
|
|||
|
deleteLoco.UseVisualStyleBackColor = true;
|
|||
|
deleteLoco.Click += deleteLoco_Click;
|
|||
|
//
|
|||
|
// input
|
|||
|
//
|
|||
|
input.Location = new Point(51, 152);
|
|||
|
input.Name = "input";
|
|||
|
input.Size = new Size(214, 27);
|
|||
|
input.TabIndex = 1;
|
|||
|
//
|
|||
|
// addLocomotiv
|
|||
|
//
|
|||
|
addLocomotiv.Location = new Point(21, 40);
|
|||
|
addLocomotiv.Name = "addLocomotiv";
|
|||
|
addLocomotiv.Size = new Size(271, 59);
|
|||
|
addLocomotiv.TabIndex = 0;
|
|||
|
addLocomotiv.Text = "Добавить электровоз";
|
|||
|
addLocomotiv.UseVisualStyleBackColor = true;
|
|||
|
addLocomotiv.Click += addLocomotiv_Click;
|
|||
|
//
|
|||
|
// collectionPictureBox
|
|||
|
//
|
|||
|
collectionPictureBox.Location = new Point(12, 12);
|
|||
|
collectionPictureBox.Name = "collectionPictureBox";
|
|||
|
collectionPictureBox.Size = new Size(933, 707);
|
|||
|
collectionPictureBox.TabIndex = 1;
|
|||
|
collectionPictureBox.TabStop = false;
|
|||
|
//
|
|||
|
// FormLocomotivCollection
|
|||
|
//
|
|||
|
AutoScaleDimensions = new SizeF(8F, 20F);
|
|||
|
AutoScaleMode = AutoScaleMode.Font;
|
|||
|
ClientSize = new Size(1265, 731);
|
|||
|
Controls.Add(collectionPictureBox);
|
|||
|
Controls.Add(toolsBox);
|
|||
|
Name = "FormLocomotivCollection";
|
|||
|
Text = "Набор локомотивов";
|
|||
|
toolsBox.ResumeLayout(false);
|
|||
|
toolsBox.PerformLayout();
|
|||
|
((ISupportInitialize)collectionPictureBox).EndInit();
|
|||
|
ResumeLayout(false);
|
|||
|
}
|
|||
|
|
|||
|
#endregion
|
|||
|
|
|||
|
private GroupBox toolsBox;
|
|||
|
private TextBox input;
|
|||
|
private Button addLocomotiv;
|
|||
|
private PictureBox collectionPictureBox;
|
|||
|
private Button refreshCollection;
|
|||
|
private Button deleteLoco;
|
|||
|
}
|