137 lines
5.3 KiB
C#
137 lines
5.3 KiB
C#
|
namespace AirBomber
|
|||
|
{
|
|||
|
partial class BomberForm
|
|||
|
{
|
|||
|
/// <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()
|
|||
|
{
|
|||
|
BomberPictureBox = new PictureBox();
|
|||
|
CreateButton = new Button();
|
|||
|
ButtonRight = new Button();
|
|||
|
ButtonDown = new Button();
|
|||
|
ButtonLeft = new Button();
|
|||
|
ButtonUp = new Button();
|
|||
|
((System.ComponentModel.ISupportInitialize)BomberPictureBox).BeginInit();
|
|||
|
SuspendLayout();
|
|||
|
//
|
|||
|
// BomberPictureBox
|
|||
|
//
|
|||
|
BomberPictureBox.Dock = DockStyle.Fill;
|
|||
|
BomberPictureBox.Location = new Point(0, 0);
|
|||
|
BomberPictureBox.Name = "BomberPictureBox";
|
|||
|
BomberPictureBox.Size = new Size(884, 461);
|
|||
|
BomberPictureBox.SizeMode = PictureBoxSizeMode.AutoSize;
|
|||
|
BomberPictureBox.TabIndex = 0;
|
|||
|
BomberPictureBox.TabStop = false;
|
|||
|
//
|
|||
|
// CreateButton
|
|||
|
//
|
|||
|
CreateButton.Anchor = AnchorStyles.Bottom | AnchorStyles.Left;
|
|||
|
CreateButton.Location = new Point(12, 419);
|
|||
|
CreateButton.Name = "CreateButton";
|
|||
|
CreateButton.Size = new Size(75, 30);
|
|||
|
CreateButton.TabIndex = 1;
|
|||
|
CreateButton.Text = "Создать";
|
|||
|
CreateButton.UseVisualStyleBackColor = true;
|
|||
|
CreateButton.Click += ButtonCreate_Click;
|
|||
|
//
|
|||
|
// ButtonRight
|
|||
|
//
|
|||
|
ButtonRight.Anchor = AnchorStyles.Bottom | AnchorStyles.Right;
|
|||
|
ButtonRight.BackgroundImage = Properties.Resources.ArrowRight;
|
|||
|
ButtonRight.BackgroundImageLayout = ImageLayout.Zoom;
|
|||
|
ButtonRight.Location = new Point(842, 419);
|
|||
|
ButtonRight.Name = "ButtonRight";
|
|||
|
ButtonRight.Size = new Size(30, 30);
|
|||
|
ButtonRight.TabIndex = 2;
|
|||
|
ButtonRight.UseVisualStyleBackColor = true;
|
|||
|
ButtonRight.Click += ButtonMove_Click;
|
|||
|
//
|
|||
|
// ButtonDown
|
|||
|
//
|
|||
|
ButtonDown.Anchor = AnchorStyles.Bottom | AnchorStyles.Right;
|
|||
|
ButtonDown.BackgroundImage = Properties.Resources.ArrowDown;
|
|||
|
ButtonDown.BackgroundImageLayout = ImageLayout.Zoom;
|
|||
|
ButtonDown.Location = new Point(806, 419);
|
|||
|
ButtonDown.Name = "ButtonDown";
|
|||
|
ButtonDown.Size = new Size(30, 30);
|
|||
|
ButtonDown.TabIndex = 3;
|
|||
|
ButtonDown.UseVisualStyleBackColor = true;
|
|||
|
ButtonDown.Click += ButtonMove_Click;
|
|||
|
//
|
|||
|
// ButtonLeft
|
|||
|
//
|
|||
|
ButtonLeft.Anchor = AnchorStyles.Bottom | AnchorStyles.Right;
|
|||
|
ButtonLeft.BackgroundImage = Properties.Resources.ArrowLeft;
|
|||
|
ButtonLeft.BackgroundImageLayout = ImageLayout.Zoom;
|
|||
|
ButtonLeft.Location = new Point(770, 419);
|
|||
|
ButtonLeft.Name = "ButtonLeft";
|
|||
|
ButtonLeft.Size = new Size(30, 30);
|
|||
|
ButtonLeft.TabIndex = 4;
|
|||
|
ButtonLeft.UseVisualStyleBackColor = true;
|
|||
|
ButtonLeft.Click += ButtonMove_Click;
|
|||
|
//
|
|||
|
// ButtonUp
|
|||
|
//
|
|||
|
ButtonUp.Anchor = AnchorStyles.Bottom | AnchorStyles.Right;
|
|||
|
ButtonUp.BackgroundImage = Properties.Resources.ArrowUp;
|
|||
|
ButtonUp.BackgroundImageLayout = ImageLayout.Zoom;
|
|||
|
ButtonUp.Location = new Point(806, 383);
|
|||
|
ButtonUp.Name = "ButtonUp";
|
|||
|
ButtonUp.Size = new Size(30, 30);
|
|||
|
ButtonUp.TabIndex = 5;
|
|||
|
ButtonUp.UseVisualStyleBackColor = true;
|
|||
|
ButtonUp.Click += ButtonMove_Click;
|
|||
|
//
|
|||
|
// BomberForm
|
|||
|
//
|
|||
|
AutoScaleDimensions = new SizeF(7F, 15F);
|
|||
|
AutoScaleMode = AutoScaleMode.Font;
|
|||
|
ClientSize = new Size(884, 461);
|
|||
|
Controls.Add(ButtonUp);
|
|||
|
Controls.Add(ButtonLeft);
|
|||
|
Controls.Add(ButtonDown);
|
|||
|
Controls.Add(ButtonRight);
|
|||
|
Controls.Add(CreateButton);
|
|||
|
Controls.Add(BomberPictureBox);
|
|||
|
Name = "BomberForm";
|
|||
|
StartPosition = FormStartPosition.CenterScreen;
|
|||
|
Text = "Бомбардировщик";
|
|||
|
((System.ComponentModel.ISupportInitialize)BomberPictureBox).EndInit();
|
|||
|
ResumeLayout(false);
|
|||
|
PerformLayout();
|
|||
|
}
|
|||
|
|
|||
|
#endregion
|
|||
|
|
|||
|
private PictureBox BomberPictureBox;
|
|||
|
private Button CreateButton;
|
|||
|
private Button ButtonRight;
|
|||
|
private Button ButtonDown;
|
|||
|
private Button ButtonLeft;
|
|||
|
private Button ButtonUp;
|
|||
|
}
|
|||
|
}
|