2023-09-25 11:15:05 +04:00
|
|
|
|
namespace Cruiser
|
|
|
|
|
{
|
|
|
|
|
partial class FormCruiser
|
|
|
|
|
{
|
|
|
|
|
/// <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()
|
|
|
|
|
{
|
|
|
|
|
pictureBoxCruiser = new PictureBox();
|
2023-09-25 14:09:42 +04:00
|
|
|
|
buttonCreateLiner = new Button();
|
2023-09-25 11:15:05 +04:00
|
|
|
|
buttonRight = new Button();
|
|
|
|
|
buttonDown = new Button();
|
|
|
|
|
buttonLeft = new Button();
|
|
|
|
|
buttonUp = new Button();
|
2023-09-25 14:09:42 +04:00
|
|
|
|
buttonCreateProLiner = new Button();
|
|
|
|
|
comboBoxStrategy = new ComboBox();
|
|
|
|
|
ButtonStep = new Button();
|
2023-10-21 14:10:32 +04:00
|
|
|
|
buttonSelectCruiser = new Button();
|
2023-09-25 11:15:05 +04:00
|
|
|
|
((System.ComponentModel.ISupportInitialize)pictureBoxCruiser).BeginInit();
|
|
|
|
|
SuspendLayout();
|
|
|
|
|
//
|
|
|
|
|
// pictureBoxCruiser
|
|
|
|
|
//
|
|
|
|
|
pictureBoxCruiser.Dock = DockStyle.Fill;
|
|
|
|
|
pictureBoxCruiser.Location = new Point(0, 0);
|
|
|
|
|
pictureBoxCruiser.Name = "pictureBoxCruiser";
|
|
|
|
|
pictureBoxCruiser.Size = new Size(800, 450);
|
|
|
|
|
pictureBoxCruiser.TabIndex = 0;
|
|
|
|
|
pictureBoxCruiser.TabStop = false;
|
|
|
|
|
//
|
2023-09-25 14:09:42 +04:00
|
|
|
|
// buttonCreateLiner
|
2023-09-25 11:15:05 +04:00
|
|
|
|
//
|
2023-09-25 14:09:42 +04:00
|
|
|
|
buttonCreateLiner.Location = new Point(12, 396);
|
|
|
|
|
buttonCreateLiner.Name = "buttonCreateLiner";
|
|
|
|
|
buttonCreateLiner.Size = new Size(125, 48);
|
|
|
|
|
buttonCreateLiner.TabIndex = 1;
|
|
|
|
|
buttonCreateLiner.Text = "Создать Лайнер";
|
|
|
|
|
buttonCreateLiner.UseVisualStyleBackColor = true;
|
|
|
|
|
buttonCreateLiner.Click += buttonCreateLiner_Click;
|
2023-09-25 11:15:05 +04:00
|
|
|
|
//
|
|
|
|
|
// buttonRight
|
|
|
|
|
//
|
|
|
|
|
buttonRight.BackgroundImage = Properties.Resources.Right;
|
|
|
|
|
buttonRight.BackgroundImageLayout = ImageLayout.Zoom;
|
|
|
|
|
buttonRight.Location = new Point(758, 408);
|
|
|
|
|
buttonRight.Name = "buttonRight";
|
|
|
|
|
buttonRight.Size = new Size(30, 30);
|
|
|
|
|
buttonRight.TabIndex = 2;
|
|
|
|
|
buttonRight.UseVisualStyleBackColor = true;
|
|
|
|
|
buttonRight.Click += ButtonMove_Click;
|
|
|
|
|
//
|
|
|
|
|
// buttonDown
|
|
|
|
|
//
|
|
|
|
|
buttonDown.BackgroundImage = Properties.Resources.Down;
|
|
|
|
|
buttonDown.BackgroundImageLayout = ImageLayout.Zoom;
|
|
|
|
|
buttonDown.Location = new Point(722, 408);
|
|
|
|
|
buttonDown.Name = "buttonDown";
|
|
|
|
|
buttonDown.Size = new Size(30, 30);
|
|
|
|
|
buttonDown.TabIndex = 3;
|
|
|
|
|
buttonDown.UseVisualStyleBackColor = true;
|
|
|
|
|
buttonDown.Click += ButtonMove_Click;
|
|
|
|
|
//
|
|
|
|
|
// buttonLeft
|
|
|
|
|
//
|
|
|
|
|
buttonLeft.BackgroundImage = Properties.Resources.Left;
|
|
|
|
|
buttonLeft.BackgroundImageLayout = ImageLayout.Zoom;
|
|
|
|
|
buttonLeft.Location = new Point(686, 408);
|
|
|
|
|
buttonLeft.Name = "buttonLeft";
|
|
|
|
|
buttonLeft.Size = new Size(30, 30);
|
|
|
|
|
buttonLeft.TabIndex = 4;
|
|
|
|
|
buttonLeft.UseVisualStyleBackColor = true;
|
|
|
|
|
buttonLeft.Click += ButtonMove_Click;
|
|
|
|
|
//
|
|
|
|
|
// buttonUp
|
|
|
|
|
//
|
|
|
|
|
buttonUp.BackgroundImage = Properties.Resources.Up;
|
|
|
|
|
buttonUp.BackgroundImageLayout = ImageLayout.Zoom;
|
|
|
|
|
buttonUp.Location = new Point(722, 372);
|
|
|
|
|
buttonUp.Name = "buttonUp";
|
|
|
|
|
buttonUp.Size = new Size(30, 30);
|
|
|
|
|
buttonUp.TabIndex = 5;
|
|
|
|
|
buttonUp.UseVisualStyleBackColor = true;
|
|
|
|
|
buttonUp.Click += ButtonMove_Click;
|
|
|
|
|
//
|
2023-09-25 14:09:42 +04:00
|
|
|
|
// buttonCreateProLiner
|
|
|
|
|
//
|
|
|
|
|
buttonCreateProLiner.Location = new Point(143, 396);
|
|
|
|
|
buttonCreateProLiner.Name = "buttonCreateProLiner";
|
|
|
|
|
buttonCreateProLiner.Size = new Size(125, 48);
|
|
|
|
|
buttonCreateProLiner.TabIndex = 6;
|
|
|
|
|
buttonCreateProLiner.Text = "Создать Лютый Лайнер";
|
|
|
|
|
buttonCreateProLiner.UseVisualStyleBackColor = true;
|
|
|
|
|
buttonCreateProLiner.Click += buttonCreateProLiner_Click;
|
|
|
|
|
//
|
|
|
|
|
// comboBoxStrategy
|
|
|
|
|
//
|
|
|
|
|
comboBoxStrategy.DropDownStyle = ComboBoxStyle.DropDownList;
|
|
|
|
|
comboBoxStrategy.FormattingEnabled = true;
|
|
|
|
|
comboBoxStrategy.Items.AddRange(new object[] { "MoveToCenter", "MoveToBorder" });
|
|
|
|
|
comboBoxStrategy.Location = new Point(667, 12);
|
|
|
|
|
comboBoxStrategy.Name = "comboBoxStrategy";
|
|
|
|
|
comboBoxStrategy.Size = new Size(121, 23);
|
|
|
|
|
comboBoxStrategy.TabIndex = 7;
|
|
|
|
|
//
|
|
|
|
|
// ButtonStep
|
|
|
|
|
//
|
|
|
|
|
ButtonStep.Location = new Point(713, 41);
|
|
|
|
|
ButtonStep.Name = "ButtonStep";
|
|
|
|
|
ButtonStep.Size = new Size(75, 23);
|
|
|
|
|
ButtonStep.TabIndex = 8;
|
|
|
|
|
ButtonStep.Text = "Шаг";
|
|
|
|
|
ButtonStep.UseVisualStyleBackColor = true;
|
|
|
|
|
ButtonStep.Click += ButtonStep_Click;
|
|
|
|
|
//
|
2023-10-21 14:10:32 +04:00
|
|
|
|
// buttonSelectCruiser
|
|
|
|
|
//
|
|
|
|
|
buttonSelectCruiser.Location = new Point(274, 396);
|
|
|
|
|
buttonSelectCruiser.Name = "buttonSelectCruiser";
|
|
|
|
|
buttonSelectCruiser.Size = new Size(127, 48);
|
|
|
|
|
buttonSelectCruiser.TabIndex = 9;
|
|
|
|
|
buttonSelectCruiser.Text = "Выбрать этот лайнер";
|
|
|
|
|
buttonSelectCruiser.UseVisualStyleBackColor = true;
|
|
|
|
|
buttonSelectCruiser.Click += ButtonSelectCruiser_Click;
|
|
|
|
|
//
|
2023-09-25 11:15:05 +04:00
|
|
|
|
// FormCruiser
|
|
|
|
|
//
|
|
|
|
|
AutoScaleDimensions = new SizeF(7F, 15F);
|
|
|
|
|
AutoScaleMode = AutoScaleMode.Font;
|
|
|
|
|
ClientSize = new Size(800, 450);
|
2023-10-21 14:10:32 +04:00
|
|
|
|
Controls.Add(buttonSelectCruiser);
|
2023-09-25 14:09:42 +04:00
|
|
|
|
Controls.Add(ButtonStep);
|
|
|
|
|
Controls.Add(comboBoxStrategy);
|
|
|
|
|
Controls.Add(buttonCreateProLiner);
|
2023-09-25 11:15:05 +04:00
|
|
|
|
Controls.Add(buttonUp);
|
|
|
|
|
Controls.Add(buttonLeft);
|
|
|
|
|
Controls.Add(buttonDown);
|
|
|
|
|
Controls.Add(buttonRight);
|
2023-09-25 14:09:42 +04:00
|
|
|
|
Controls.Add(buttonCreateLiner);
|
2023-09-25 11:15:05 +04:00
|
|
|
|
Controls.Add(pictureBoxCruiser);
|
|
|
|
|
Name = "FormCruiser";
|
|
|
|
|
Text = "Cruiser";
|
2023-10-21 14:10:32 +04:00
|
|
|
|
Load += FormCruiser_Load;
|
2023-09-25 11:15:05 +04:00
|
|
|
|
((System.ComponentModel.ISupportInitialize)pictureBoxCruiser).EndInit();
|
|
|
|
|
ResumeLayout(false);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
|
|
private PictureBox pictureBoxCruiser;
|
2023-09-25 14:09:42 +04:00
|
|
|
|
private Button buttonCreateLiner;
|
2023-09-25 11:15:05 +04:00
|
|
|
|
private Button buttonRight;
|
|
|
|
|
private Button buttonDown;
|
|
|
|
|
private Button buttonLeft;
|
|
|
|
|
private Button buttonUp;
|
2023-09-25 14:09:42 +04:00
|
|
|
|
private Button buttonCreateProLiner;
|
|
|
|
|
private ComboBox comboBoxStrategy;
|
|
|
|
|
private Button ButtonStep;
|
2023-10-21 14:10:32 +04:00
|
|
|
|
private Button buttonSelectCruiser;
|
2023-09-25 11:15:05 +04:00
|
|
|
|
}
|
|
|
|
|
}
|