PIbd-21_MalafeevL.S._Cruise.../Cruiser/FormCruiser.Designer.cs

182 lines
7.3 KiB
C#

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();
buttonCreateLiner = new Button();
buttonRight = new Button();
buttonDown = new Button();
buttonLeft = new Button();
buttonUp = new Button();
buttonCreateProLiner = new Button();
comboBoxStrategy = new ComboBox();
ButtonStep = new Button();
buttonSelectCruiser = new Button();
((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;
//
// buttonCreateLiner
//
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;
//
// 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;
//
// 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;
//
// 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;
//
// FormCruiser
//
AutoScaleDimensions = new SizeF(7F, 15F);
AutoScaleMode = AutoScaleMode.Font;
ClientSize = new Size(800, 450);
Controls.Add(buttonSelectCruiser);
Controls.Add(ButtonStep);
Controls.Add(comboBoxStrategy);
Controls.Add(buttonCreateProLiner);
Controls.Add(buttonUp);
Controls.Add(buttonLeft);
Controls.Add(buttonDown);
Controls.Add(buttonRight);
Controls.Add(buttonCreateLiner);
Controls.Add(pictureBoxCruiser);
Name = "FormCruiser";
Text = "Cruiser";
Load += FormCruiser_Load;
((System.ComponentModel.ISupportInitialize)pictureBoxCruiser).EndInit();
ResumeLayout(false);
}
#endregion
private PictureBox pictureBoxCruiser;
private Button buttonCreateLiner;
private Button buttonRight;
private Button buttonDown;
private Button buttonLeft;
private Button buttonUp;
private Button buttonCreateProLiner;
private ComboBox comboBoxStrategy;
private Button ButtonStep;
private Button buttonSelectCruiser;
}
}