179 lines
9.3 KiB
C#
179 lines
9.3 KiB
C#
namespace Lab1ContainersShip
|
||
{
|
||
partial class Form1
|
||
{
|
||
/// <summary>
|
||
/// Обязательная переменная конструктора.
|
||
/// </summary>
|
||
private System.ComponentModel.IContainer components = null;
|
||
|
||
/// <summary>
|
||
/// Освободить все используемые ресурсы.
|
||
/// </summary>
|
||
/// <param name="disposing">истинно, если управляемый ресурс должен быть удален; иначе ложно.</param>
|
||
protected override void Dispose(bool disposing)
|
||
{
|
||
if (disposing && (components != null))
|
||
{
|
||
components.Dispose();
|
||
}
|
||
base.Dispose(disposing);
|
||
}
|
||
|
||
#region Код, автоматически созданный конструктором форм Windows
|
||
|
||
/// <summary>
|
||
/// Требуемый метод для поддержки конструктора — не изменяйте
|
||
/// содержимое этого метода с помощью редактора кода.
|
||
/// </summary>
|
||
private void InitializeComponent()
|
||
{
|
||
this.buttonUp = new System.Windows.Forms.Button();
|
||
this.pictureBox1 = new System.Windows.Forms.PictureBox();
|
||
this.buttonRight = new System.Windows.Forms.Button();
|
||
this.buttonLeft = new System.Windows.Forms.Button();
|
||
this.buttonDown = new System.Windows.Forms.Button();
|
||
this.comboBoxStrategy = new System.Windows.Forms.ComboBox();
|
||
this.buttonStep = new System.Windows.Forms.Button();
|
||
this.buttonCreateContainerShip = new System.Windows.Forms.Button();
|
||
this.buttonCreateShip = new System.Windows.Forms.Button();
|
||
((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
|
||
this.SuspendLayout();
|
||
//
|
||
// buttonUp
|
||
//
|
||
this.buttonUp.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
|
||
this.buttonUp.BackgroundImage = global::Lab1ContainersShip.Properties.Resources.photo;
|
||
this.buttonUp.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
|
||
this.buttonUp.Location = new System.Drawing.Point(696, 339);
|
||
this.buttonUp.Name = "buttonUp";
|
||
this.buttonUp.Size = new System.Drawing.Size(30, 30);
|
||
this.buttonUp.TabIndex = 2;
|
||
this.buttonUp.UseVisualStyleBackColor = true;
|
||
this.buttonUp.Click += new System.EventHandler(this.buttonMove_Click);
|
||
//
|
||
// pictureBox1
|
||
//
|
||
this.pictureBox1.Dock = System.Windows.Forms.DockStyle.Fill;
|
||
this.pictureBox1.Location = new System.Drawing.Point(0, 0);
|
||
this.pictureBox1.Name = "pictureBox1";
|
||
this.pictureBox1.Size = new System.Drawing.Size(884, 461);
|
||
this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.AutoSize;
|
||
this.pictureBox1.TabIndex = 0;
|
||
this.pictureBox1.TabStop = false;
|
||
//
|
||
// buttonRight
|
||
//
|
||
this.buttonRight.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
|
||
this.buttonRight.BackgroundImage = global::Lab1ContainersShip.Properties.Resources.photo1;
|
||
this.buttonRight.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
|
||
this.buttonRight.Location = new System.Drawing.Point(730, 375);
|
||
this.buttonRight.Name = "buttonRight";
|
||
this.buttonRight.Size = new System.Drawing.Size(30, 30);
|
||
this.buttonRight.TabIndex = 3;
|
||
this.buttonRight.UseVisualStyleBackColor = true;
|
||
this.buttonRight.Click += new System.EventHandler(this.buttonMove_Click);
|
||
//
|
||
// buttonLeft
|
||
//
|
||
this.buttonLeft.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
|
||
this.buttonLeft.BackgroundImage = global::Lab1ContainersShip.Properties.Resources.photo3;
|
||
this.buttonLeft.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
|
||
this.buttonLeft.Location = new System.Drawing.Point(660, 375);
|
||
this.buttonLeft.Name = "buttonLeft";
|
||
this.buttonLeft.Size = new System.Drawing.Size(30, 30);
|
||
this.buttonLeft.TabIndex = 4;
|
||
this.buttonLeft.UseVisualStyleBackColor = true;
|
||
this.buttonLeft.Click += new System.EventHandler(this.buttonMove_Click);
|
||
//
|
||
// buttonDown
|
||
//
|
||
this.buttonDown.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
|
||
this.buttonDown.BackgroundImage = global::Lab1ContainersShip.Properties.Resources.photo2;
|
||
this.buttonDown.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
|
||
this.buttonDown.Location = new System.Drawing.Point(696, 411);
|
||
this.buttonDown.Name = "buttonDown";
|
||
this.buttonDown.Size = new System.Drawing.Size(30, 30);
|
||
this.buttonDown.TabIndex = 5;
|
||
this.buttonDown.UseVisualStyleBackColor = true;
|
||
this.buttonDown.Click += new System.EventHandler(this.buttonMove_Click);
|
||
//
|
||
// comboBoxStrategy
|
||
//
|
||
this.comboBoxStrategy.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
|
||
this.comboBoxStrategy.FormattingEnabled = true;
|
||
this.comboBoxStrategy.Items.AddRange(new object[] {
|
||
"MoveToCenter",
|
||
"MoveToRight-Down"});
|
||
this.comboBoxStrategy.Location = new System.Drawing.Point(751, 12);
|
||
this.comboBoxStrategy.Name = "comboBoxStrategy";
|
||
this.comboBoxStrategy.Size = new System.Drawing.Size(121, 21);
|
||
this.comboBoxStrategy.TabIndex = 6;
|
||
//
|
||
// buttonStep
|
||
//
|
||
this.buttonStep.Location = new System.Drawing.Point(797, 39);
|
||
this.buttonStep.Name = "buttonStep";
|
||
this.buttonStep.Size = new System.Drawing.Size(75, 23);
|
||
this.buttonStep.TabIndex = 7;
|
||
this.buttonStep.Text = "шаг";
|
||
this.buttonStep.UseVisualStyleBackColor = true;
|
||
this.buttonStep.Click += new System.EventHandler(this.buttonStep_Click);
|
||
//
|
||
// buttonCreateContainerShip
|
||
//
|
||
this.buttonCreateContainerShip.Location = new System.Drawing.Point(12, 411);
|
||
this.buttonCreateContainerShip.Name = "buttonCreateContainerShip";
|
||
this.buttonCreateContainerShip.Size = new System.Drawing.Size(97, 38);
|
||
this.buttonCreateContainerShip.TabIndex = 8;
|
||
this.buttonCreateContainerShip.Text = "создать контейнеровоз";
|
||
this.buttonCreateContainerShip.UseVisualStyleBackColor = true;
|
||
this.buttonCreateContainerShip.Click += new System.EventHandler(this.buttonCreateContainerShip_Click);
|
||
//
|
||
// buttonCreateShip
|
||
//
|
||
this.buttonCreateShip.Location = new System.Drawing.Point(115, 411);
|
||
this.buttonCreateShip.Name = "buttonCreateShip";
|
||
this.buttonCreateShip.Size = new System.Drawing.Size(94, 38);
|
||
this.buttonCreateShip.TabIndex = 9;
|
||
this.buttonCreateShip.Text = "создать кораблик";
|
||
this.buttonCreateShip.UseVisualStyleBackColor = true;
|
||
this.buttonCreateShip.Click += new System.EventHandler(this.buttonCreateShip_Click);
|
||
//
|
||
// Form1
|
||
//
|
||
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
||
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
||
this.ClientSize = new System.Drawing.Size(884, 461);
|
||
this.Controls.Add(this.buttonCreateShip);
|
||
this.Controls.Add(this.buttonCreateContainerShip);
|
||
this.Controls.Add(this.buttonStep);
|
||
this.Controls.Add(this.comboBoxStrategy);
|
||
this.Controls.Add(this.buttonDown);
|
||
this.Controls.Add(this.buttonLeft);
|
||
this.Controls.Add(this.buttonRight);
|
||
this.Controls.Add(this.buttonUp);
|
||
this.Controls.Add(this.pictureBox1);
|
||
this.Name = "Form1";
|
||
this.Text = "контейнеровоз";
|
||
((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
|
||
this.ResumeLayout(false);
|
||
this.PerformLayout();
|
||
|
||
}
|
||
|
||
#endregion
|
||
|
||
private System.Windows.Forms.PictureBox pictureBox1;
|
||
private System.Windows.Forms.Button buttonUp;
|
||
private System.Windows.Forms.Button buttonRight;
|
||
private System.Windows.Forms.Button buttonLeft;
|
||
private System.Windows.Forms.Button buttonDown;
|
||
private System.Windows.Forms.ComboBox comboBoxStrategy;
|
||
private System.Windows.Forms.Button buttonStep;
|
||
private System.Windows.Forms.Button buttonCreateContainerShip;
|
||
private System.Windows.Forms.Button buttonCreateShip;
|
||
}
|
||
}
|
||
|