136 lines
5.6 KiB
C#
136 lines
5.6 KiB
C#
|
namespace ProjectAirFighter
|
|||
|
{
|
|||
|
partial class FormAirFighter
|
|||
|
{
|
|||
|
/// <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()
|
|||
|
{
|
|||
|
pictureBoxAirFighter = new PictureBox();
|
|||
|
buttonCreateAirFighter = new Button();
|
|||
|
buttonUp = new Button();
|
|||
|
buttonLeft = new Button();
|
|||
|
buttonDown = new Button();
|
|||
|
buttonRight = new Button();
|
|||
|
((System.ComponentModel.ISupportInitialize)pictureBoxAirFighter).BeginInit();
|
|||
|
SuspendLayout();
|
|||
|
//
|
|||
|
// pictureBoxAirFighter
|
|||
|
//
|
|||
|
pictureBoxAirFighter.Dock = DockStyle.Fill;
|
|||
|
pictureBoxAirFighter.Location = new Point(0, 0);
|
|||
|
pictureBoxAirFighter.Name = "pictureBoxAirFighter";
|
|||
|
pictureBoxAirFighter.Size = new Size(884, 461);
|
|||
|
pictureBoxAirFighter.SizeMode = PictureBoxSizeMode.AutoSize;
|
|||
|
pictureBoxAirFighter.TabIndex = 0;
|
|||
|
pictureBoxAirFighter.TabStop = false;
|
|||
|
//
|
|||
|
// buttonCreateAirFighter
|
|||
|
//
|
|||
|
buttonCreateAirFighter.Anchor = AnchorStyles.Bottom | AnchorStyles.Left;
|
|||
|
buttonCreateAirFighter.Location = new Point(12, 426);
|
|||
|
buttonCreateAirFighter.Name = "buttonCreateAirFighter";
|
|||
|
buttonCreateAirFighter.Size = new Size(75, 23);
|
|||
|
buttonCreateAirFighter.TabIndex = 1;
|
|||
|
buttonCreateAirFighter.Text = "Создать";
|
|||
|
buttonCreateAirFighter.UseVisualStyleBackColor = true;
|
|||
|
buttonCreateAirFighter.Click += buttonCreateAirFighter_Click;
|
|||
|
//
|
|||
|
// buttonUp
|
|||
|
//
|
|||
|
buttonUp.Anchor = AnchorStyles.Bottom | AnchorStyles.Right;
|
|||
|
buttonUp.BackgroundImage = Properties.Resources.pngtree_vector_up_arrow_icon_png_image_956434;
|
|||
|
buttonUp.BackgroundImageLayout = ImageLayout.Zoom;
|
|||
|
buttonUp.Location = new Point(762, 383);
|
|||
|
buttonUp.Name = "buttonUp";
|
|||
|
buttonUp.Size = new Size(30, 30);
|
|||
|
buttonUp.TabIndex = 2;
|
|||
|
buttonUp.UseVisualStyleBackColor = true;
|
|||
|
buttonUp.Click += buttonMove_Click;
|
|||
|
//
|
|||
|
// buttonLeft
|
|||
|
//
|
|||
|
buttonLeft.Anchor = AnchorStyles.Bottom | AnchorStyles.Right;
|
|||
|
buttonLeft.BackgroundImage = Properties.Resources.pngtree_vector_left_arrow_icon_png_image_956431;
|
|||
|
buttonLeft.BackgroundImageLayout = ImageLayout.Zoom;
|
|||
|
buttonLeft.Location = new Point(726, 419);
|
|||
|
buttonLeft.Name = "buttonLeft";
|
|||
|
buttonLeft.Size = new Size(30, 30);
|
|||
|
buttonLeft.TabIndex = 3;
|
|||
|
buttonLeft.UseVisualStyleBackColor = true;
|
|||
|
buttonLeft.Click += buttonMove_Click;
|
|||
|
//
|
|||
|
// buttonDown
|
|||
|
//
|
|||
|
buttonDown.Anchor = AnchorStyles.Bottom | AnchorStyles.Right;
|
|||
|
buttonDown.BackgroundImage = Properties.Resources._959159;
|
|||
|
buttonDown.BackgroundImageLayout = ImageLayout.Zoom;
|
|||
|
buttonDown.Location = new Point(762, 419);
|
|||
|
buttonDown.Name = "buttonDown";
|
|||
|
buttonDown.Size = new Size(30, 30);
|
|||
|
buttonDown.TabIndex = 4;
|
|||
|
buttonDown.UseVisualStyleBackColor = true;
|
|||
|
buttonDown.Click += buttonMove_Click;
|
|||
|
//
|
|||
|
// buttonRight
|
|||
|
//
|
|||
|
buttonRight.Anchor = AnchorStyles.Bottom | AnchorStyles.Right;
|
|||
|
buttonRight.BackgroundImage = Properties.Resources.kisspng_arrow_computer_icons_clip_art_vector_graphics_comp_arrow_right_forward_svg_png_icon_free_download_5_5c045e4609f811_9998921515437901500408;
|
|||
|
buttonRight.BackgroundImageLayout = ImageLayout.Zoom;
|
|||
|
buttonRight.Location = new Point(798, 419);
|
|||
|
buttonRight.Name = "buttonRight";
|
|||
|
buttonRight.Size = new Size(30, 30);
|
|||
|
buttonRight.TabIndex = 5;
|
|||
|
buttonRight.UseVisualStyleBackColor = true;
|
|||
|
buttonRight.Click += buttonMove_Click;
|
|||
|
//
|
|||
|
// FormAirFighter
|
|||
|
//
|
|||
|
AutoScaleDimensions = new SizeF(7F, 15F);
|
|||
|
AutoScaleMode = AutoScaleMode.Font;
|
|||
|
ClientSize = new Size(884, 461);
|
|||
|
Controls.Add(buttonRight);
|
|||
|
Controls.Add(buttonDown);
|
|||
|
Controls.Add(buttonLeft);
|
|||
|
Controls.Add(buttonUp);
|
|||
|
Controls.Add(buttonCreateAirFighter);
|
|||
|
Controls.Add(pictureBoxAirFighter);
|
|||
|
Name = "FormAirFighter";
|
|||
|
Text = "AirFighter";
|
|||
|
((System.ComponentModel.ISupportInitialize)pictureBoxAirFighter).EndInit();
|
|||
|
ResumeLayout(false);
|
|||
|
PerformLayout();
|
|||
|
}
|
|||
|
|
|||
|
#endregion
|
|||
|
|
|||
|
private PictureBox pictureBoxAirFighter;
|
|||
|
private Button buttonCreateAirFighter;
|
|||
|
private Button buttonUp;
|
|||
|
private Button buttonLeft;
|
|||
|
private Button buttonDown;
|
|||
|
private Button buttonRight;
|
|||
|
}
|
|||
|
}
|