205 lines
10 KiB
C#
205 lines
10 KiB
C#
namespace ContainerShip
|
||
{
|
||
partial class FormShip
|
||
{
|
||
/// <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()
|
||
{
|
||
this.pictureBoxShip = new System.Windows.Forms.PictureBox();
|
||
this.buttonCreate = new System.Windows.Forms.Button();
|
||
this.buttonUp = new System.Windows.Forms.Button();
|
||
this.buttonRight = new System.Windows.Forms.Button();
|
||
this.buttonLeft = new System.Windows.Forms.Button();
|
||
this.buttonDown = new System.Windows.Forms.Button();
|
||
this.statusStrip = new System.Windows.Forms.StatusStrip();
|
||
this.toolStripStatusSpeed = new System.Windows.Forms.ToolStripStatusLabel();
|
||
this.toolStripStatusWeight = new System.Windows.Forms.ToolStripStatusLabel();
|
||
this.toolStripStatusBodyColor = new System.Windows.Forms.ToolStripStatusLabel();
|
||
this.buttonCreateModif = new System.Windows.Forms.Button();
|
||
this.buttonSelectShip = new System.Windows.Forms.Button();
|
||
((System.ComponentModel.ISupportInitialize)(this.pictureBoxShip)).BeginInit();
|
||
this.statusStrip.SuspendLayout();
|
||
this.SuspendLayout();
|
||
//
|
||
// pictureBoxShip
|
||
//
|
||
this.pictureBoxShip.Dock = System.Windows.Forms.DockStyle.Fill;
|
||
this.pictureBoxShip.Location = new System.Drawing.Point(0, 0);
|
||
this.pictureBoxShip.Name = "pictureBoxShip";
|
||
this.pictureBoxShip.Size = new System.Drawing.Size(800, 428);
|
||
this.pictureBoxShip.SizeMode = System.Windows.Forms.PictureBoxSizeMode.AutoSize;
|
||
this.pictureBoxShip.TabIndex = 3;
|
||
this.pictureBoxShip.TabStop = false;
|
||
//
|
||
// buttonCreate
|
||
//
|
||
this.buttonCreate.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
|
||
this.buttonCreate.Location = new System.Drawing.Point(12, 402);
|
||
this.buttonCreate.Name = "buttonCreate";
|
||
this.buttonCreate.Size = new System.Drawing.Size(75, 23);
|
||
this.buttonCreate.TabIndex = 4;
|
||
this.buttonCreate.Text = "Создать";
|
||
this.buttonCreate.UseVisualStyleBackColor = true;
|
||
this.buttonCreate.Click += new System.EventHandler(this.ButtonCreate_Click);
|
||
//
|
||
// buttonUp
|
||
//
|
||
this.buttonUp.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
|
||
this.buttonUp.BackgroundImage = global::ContainerShip.Properties.Resources.ArrowUp;
|
||
this.buttonUp.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
|
||
this.buttonUp.Location = new System.Drawing.Point(722, 359);
|
||
this.buttonUp.Name = "buttonUp";
|
||
this.buttonUp.Size = new System.Drawing.Size(30, 30);
|
||
this.buttonUp.TabIndex = 5;
|
||
this.buttonUp.UseVisualStyleBackColor = true;
|
||
this.buttonUp.Click += new System.EventHandler(this.ButtonMove_Click);
|
||
//
|
||
// buttonRight
|
||
//
|
||
this.buttonRight.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
|
||
this.buttonRight.BackgroundImage = global::ContainerShip.Properties.Resources.ArrowRight;
|
||
this.buttonRight.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
|
||
this.buttonRight.Location = new System.Drawing.Point(758, 395);
|
||
this.buttonRight.Name = "buttonRight";
|
||
this.buttonRight.Size = new System.Drawing.Size(30, 30);
|
||
this.buttonRight.TabIndex = 6;
|
||
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::ContainerShip.Properties.Resources.ArrowLeft;
|
||
this.buttonLeft.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
|
||
this.buttonLeft.Location = new System.Drawing.Point(686, 395);
|
||
this.buttonLeft.Name = "buttonLeft";
|
||
this.buttonLeft.Size = new System.Drawing.Size(30, 30);
|
||
this.buttonLeft.TabIndex = 7;
|
||
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::ContainerShip.Properties.Resources.ArrowDown;
|
||
this.buttonDown.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
|
||
this.buttonDown.Location = new System.Drawing.Point(722, 395);
|
||
this.buttonDown.Name = "buttonDown";
|
||
this.buttonDown.Size = new System.Drawing.Size(30, 30);
|
||
this.buttonDown.TabIndex = 8;
|
||
this.buttonDown.UseVisualStyleBackColor = true;
|
||
this.buttonDown.Click += new System.EventHandler(this.ButtonMove_Click);
|
||
//
|
||
// statusStrip
|
||
//
|
||
this.statusStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
||
this.toolStripStatusSpeed,
|
||
this.toolStripStatusWeight,
|
||
this.toolStripStatusBodyColor});
|
||
this.statusStrip.Location = new System.Drawing.Point(0, 428);
|
||
this.statusStrip.Name = "statusStrip";
|
||
this.statusStrip.Size = new System.Drawing.Size(800, 22);
|
||
this.statusStrip.TabIndex = 9;
|
||
//
|
||
// toolStripStatusSpeed
|
||
//
|
||
this.toolStripStatusSpeed.Name = "toolStripStatusSpeed";
|
||
this.toolStripStatusSpeed.Size = new System.Drawing.Size(65, 17);
|
||
this.toolStripStatusSpeed.Text = "Скорость: ";
|
||
//
|
||
// toolStripStatusWeight
|
||
//
|
||
this.toolStripStatusWeight.Name = "toolStripStatusWeight";
|
||
this.toolStripStatusWeight.Size = new System.Drawing.Size(32, 17);
|
||
this.toolStripStatusWeight.Text = "Вес: ";
|
||
//
|
||
// toolStripStatusBodyColor
|
||
//
|
||
this.toolStripStatusBodyColor.Name = "toolStripStatusBodyColor";
|
||
this.toolStripStatusBodyColor.Size = new System.Drawing.Size(39, 17);
|
||
this.toolStripStatusBodyColor.Text = "Цвет: ";
|
||
//
|
||
// buttonCreateModif
|
||
//
|
||
this.buttonCreateModif.Location = new System.Drawing.Point(94, 402);
|
||
this.buttonCreateModif.Name = "buttonCreateModif";
|
||
this.buttonCreateModif.Size = new System.Drawing.Size(110, 23);
|
||
this.buttonCreateModif.TabIndex = 10;
|
||
this.buttonCreateModif.Text = "Модификация";
|
||
this.buttonCreateModif.UseVisualStyleBackColor = true;
|
||
this.buttonCreateModif.Click += new System.EventHandler(this.ButtonCreateModif_Click);
|
||
//
|
||
// buttonSelectShip
|
||
//
|
||
this.buttonSelectShip.Location = new System.Drawing.Point(605, 399);
|
||
this.buttonSelectShip.Name = "buttonSelectShip";
|
||
this.buttonSelectShip.Size = new System.Drawing.Size(75, 23);
|
||
this.buttonSelectShip.TabIndex = 11;
|
||
this.buttonSelectShip.Text = "Выбрать";
|
||
this.buttonSelectShip.UseVisualStyleBackColor = true;
|
||
this.buttonSelectShip.Click += new System.EventHandler(this.ButtonSelectShip_Click);
|
||
//
|
||
// FormShip
|
||
//
|
||
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
|
||
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
||
this.ClientSize = new System.Drawing.Size(800, 450);
|
||
this.Controls.Add(this.buttonSelectShip);
|
||
this.Controls.Add(this.buttonCreateModif);
|
||
this.Controls.Add(this.buttonDown);
|
||
this.Controls.Add(this.buttonLeft);
|
||
this.Controls.Add(this.buttonRight);
|
||
this.Controls.Add(this.buttonUp);
|
||
this.Controls.Add(this.buttonCreate);
|
||
this.Controls.Add(this.pictureBoxShip);
|
||
this.Controls.Add(this.statusStrip);
|
||
this.Name = "FormShip";
|
||
this.Text = "FormShip";
|
||
this.Resize += new System.EventHandler(this.PictureBoxShip_Resize);
|
||
((System.ComponentModel.ISupportInitialize)(this.pictureBoxShip)).EndInit();
|
||
this.statusStrip.ResumeLayout(false);
|
||
this.statusStrip.PerformLayout();
|
||
this.ResumeLayout(false);
|
||
this.PerformLayout();
|
||
|
||
}
|
||
|
||
#endregion
|
||
|
||
private PictureBox pictureBoxShip;
|
||
private Button buttonCreate;
|
||
private Button buttonUp;
|
||
private Button buttonRight;
|
||
private Button buttonLeft;
|
||
private Button buttonDown;
|
||
private StatusStrip statusStrip;
|
||
private ToolStripStatusLabel toolStripStatusSpeed;
|
||
private ToolStripStatusLabel toolStripStatusWeight;
|
||
private ToolStripStatusLabel toolStripStatusBodyColor;
|
||
private Button buttonCreateModif;
|
||
private Button buttonSelectShip;
|
||
}
|
||
} |