diff --git a/AirPlaneWithRadar/AirPlaneWithRadar/AirPlaneWithRadar.csproj b/AirPlaneWithRadar/AirPlaneWithRadar/AirPlaneWithRadar.csproj
index b57c89e..13ee123 100644
--- a/AirPlaneWithRadar/AirPlaneWithRadar/AirPlaneWithRadar.csproj
+++ b/AirPlaneWithRadar/AirPlaneWithRadar/AirPlaneWithRadar.csproj
@@ -8,4 +8,19 @@
enable
+
+
+ True
+ True
+ Resources.resx
+
+
+
+
+
+ ResXFileCodeGenerator
+ Resources.Designer.cs
+
+
+
\ No newline at end of file
diff --git a/AirPlaneWithRadar/AirPlaneWithRadar/Direction.cs b/AirPlaneWithRadar/AirPlaneWithRadar/Direction.cs
new file mode 100644
index 0000000..15d11f0
--- /dev/null
+++ b/AirPlaneWithRadar/AirPlaneWithRadar/Direction.cs
@@ -0,0 +1,16 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace AirPlaneWithRadar
+{
+ internal enum Direction
+ {
+ Up =1,
+ Down =2,
+ Left = 3,
+ Right = 4
+ }
+}
diff --git a/AirPlaneWithRadar/AirPlaneWithRadar/DrawingPlain.cs b/AirPlaneWithRadar/AirPlaneWithRadar/DrawingPlain.cs
new file mode 100644
index 0000000..90f15b4
--- /dev/null
+++ b/AirPlaneWithRadar/AirPlaneWithRadar/DrawingPlain.cs
@@ -0,0 +1,109 @@
+using System;
+using System.Collections.Generic;
+using System.Drawing;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace AirPlaneWithRadar
+{
+ internal class DrawingPlain
+ {
+ public EntetyPlain Plain { get; private set; }
+ private float startPosX;
+ private float startPosY;
+ private int? pictureWidth = null;
+ private int? pictureHeight = null;
+ protected readonly int plainWidth = 120;
+ protected readonly int plainHeight =70;
+ public void Init (int speed, float weight, Color bodycolor)
+ {
+ Plain = new EntetyPlain ();
+ Plain.Init (speed, weight, bodycolor);
+ }
+ public void setPosition(int x,int y,int width,int height)
+ {
+ if (x + plainWidth > width || y + plainHeight > height || plainHeight > height || plainWidth > width || x <0 || y<0)
+ return;
+ else
+ {
+ startPosX = x;
+ startPosY = y;
+ pictureWidth = width;
+ pictureHeight = height;
+ }
+ }
+ public void MoveTransport (Direction direction)
+ {
+ if(!pictureWidth.HasValue || !pictureHeight.HasValue)
+ { return; }
+ switch (direction)
+ {
+ case Direction.Right:
+ if (startPosX + plainWidth + Plain.Step < pictureWidth)
+ startPosX += Plain.Step;
+ break;
+
+ case Direction.Left:
+ if (startPosX -Plain.Step > 0)
+ startPosX -= Plain.Step;
+ break;
+ case Direction.Down:
+ if (startPosY + plainHeight + Plain.Step < pictureHeight)
+ startPosY += Plain.Step;
+ break;
+ case Direction.Up:
+ if (startPosY - Plain.Step >0)
+ startPosY -= Plain.Step;
+ break;
+ }
+ }
+ public void DrawTransoprt (Graphics g)
+ {
+ if(startPosX < 0 || startPosY < 0 || !pictureHeight.HasValue || !pictureWidth.HasValue)
+ {
+ return;
+ }
+
+ Pen pen = new Pen(Color.Black);
+
+ g.DrawRectangle(pen, startPosX, startPosY, 20, 30);
+ g.DrawRectangle(pen, startPosX, startPosY + 30, 100, 30);
+ g.DrawRectangle(pen, startPosX+100, startPosY + 40, 20, 15);
+
+ g.DrawRectangle(pen, startPosX + 30, startPosY + 60, 5, 10);
+ g.DrawEllipse(pen, startPosX+28, startPosY+70, 9, 9);
+
+ g.DrawRectangle(pen, startPosX + 80, startPosY + 60, 5, 10);
+ g.DrawEllipse(pen, startPosX + 78, startPosY + 70, 9, 9);
+
+
+ Brush br = new SolidBrush(Plain?.BodyColor ?? Color.Black);
+ g.FillRectangle(br, startPosX+3, startPosY + 33, 94, 24);
+ g.FillRectangle(br, startPosX+1, startPosY+1, 19, 29);
+
+ Brush brWings = new SolidBrush(Color.Black);
+ g.FillRectangle(brWings, startPosX + 30, startPosY + 40, 40, 8);
+
+ Brush brCabine = new SolidBrush(Color.Blue);
+ g.FillRectangle(brCabine, startPosX + 101, startPosY + 41, 19, 14);
+
+ }
+ public void ChangeBorders(int width, int height)
+ {
+ pictureWidth = width;
+ pictureHeight = height;
+ if(pictureWidth < plainWidth || pictureHeight < plainHeight)
+ {
+ pictureWidth = null;
+ pictureHeight = null;
+ return;
+ }
+ if (startPosX + plainWidth > pictureWidth)
+ startPosX = pictureWidth.Value - plainWidth;
+
+ if(startPosY + plainHeight > pictureHeight)
+ startPosY = pictureHeight.Value - plainHeight;
+ }
+ }
+}
diff --git a/AirPlaneWithRadar/AirPlaneWithRadar/EntetyPlain.cs b/AirPlaneWithRadar/AirPlaneWithRadar/EntetyPlain.cs
new file mode 100644
index 0000000..1694c17
--- /dev/null
+++ b/AirPlaneWithRadar/AirPlaneWithRadar/EntetyPlain.cs
@@ -0,0 +1,26 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace AirPlaneWithRadar
+{
+ internal class EntetyPlain
+
+ {
+ public int Speed { get;private set; }
+ public float Weight { get; private set; }
+ public Color BodyColor { get; private set; }
+ public float Step => Speed * 100 / Weight;
+
+ public void Init (int speed, float weight, Color bodycolor)
+ {
+ Random rd = new Random();
+
+ Speed = speed <= 0 ? rd.Next(50,150):speed;
+ Weight = weight <= 0 ? rd.Next(40, 70) :weight;
+ BodyColor = bodycolor;
+ }
+ }
+}
diff --git a/AirPlaneWithRadar/AirPlaneWithRadar/Form1.Designer.cs b/AirPlaneWithRadar/AirPlaneWithRadar/Form1.Designer.cs
deleted file mode 100644
index 449dedf..0000000
--- a/AirPlaneWithRadar/AirPlaneWithRadar/Form1.Designer.cs
+++ /dev/null
@@ -1,39 +0,0 @@
-namespace AirPlaneWithRadar
-{
- partial class Form1
- {
- ///
- /// Required designer variable.
- ///
- private System.ComponentModel.IContainer components = null;
-
- ///
- /// Clean up any resources being used.
- ///
- /// true if managed resources should be disposed; otherwise, false.
- protected override void Dispose(bool disposing)
- {
- if (disposing && (components != null))
- {
- components.Dispose();
- }
- base.Dispose(disposing);
- }
-
- #region Windows Form Designer generated code
-
- ///
- /// Required method for Designer support - do not modify
- /// the contents of this method with the code editor.
- ///
- private void InitializeComponent()
- {
- this.components = new System.ComponentModel.Container();
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
- this.ClientSize = new System.Drawing.Size(800, 450);
- this.Text = "Form1";
- }
-
- #endregion
- }
-}
\ No newline at end of file
diff --git a/AirPlaneWithRadar/AirPlaneWithRadar/Form1.cs b/AirPlaneWithRadar/AirPlaneWithRadar/Form1.cs
deleted file mode 100644
index 46c4b31..0000000
--- a/AirPlaneWithRadar/AirPlaneWithRadar/Form1.cs
+++ /dev/null
@@ -1,10 +0,0 @@
-namespace AirPlaneWithRadar
-{
- public partial class Form1 : Form
- {
- public Form1()
- {
- InitializeComponent();
- }
- }
-}
\ No newline at end of file
diff --git a/AirPlaneWithRadar/AirPlaneWithRadar/FormPlain.Designer.cs b/AirPlaneWithRadar/AirPlaneWithRadar/FormPlain.Designer.cs
new file mode 100644
index 0000000..03e91d1
--- /dev/null
+++ b/AirPlaneWithRadar/AirPlaneWithRadar/FormPlain.Designer.cs
@@ -0,0 +1,184 @@
+namespace AirPlaneWithRadar
+{
+ partial class FormPlain
+ {
+ ///
+ /// Required designer variable.
+ ///
+ private System.ComponentModel.IContainer components = null;
+
+ ///
+ /// Clean up any resources being used.
+ ///
+ /// true if managed resources should be disposed; otherwise, false.
+ protected override void Dispose(bool disposing)
+ {
+ if (disposing && (components != null))
+ {
+ components.Dispose();
+ }
+ base.Dispose(disposing);
+ }
+
+ #region Windows Form Designer generated code
+
+ ///
+ /// Required method for Designer support - do not modify
+ /// the contents of this method with the code editor.
+ ///
+ private void InitializeComponent()
+ {
+ this.pictureBoxPlain = new System.Windows.Forms.PictureBox();
+ this.statusStrip = new System.Windows.Forms.StatusStrip();
+ this.toolStripStatusLabelSpeed = new System.Windows.Forms.ToolStripStatusLabel();
+ this.toolStripStatusLabelWeight = new System.Windows.Forms.ToolStripStatusLabel();
+ this.toolStripStatusLabelColor = new System.Windows.Forms.ToolStripStatusLabel();
+ this.buttonUp = new System.Windows.Forms.Button();
+ this.buttonLeft = new System.Windows.Forms.Button();
+ this.buttonDown = new System.Windows.Forms.Button();
+ this.buttonRight = new System.Windows.Forms.Button();
+ this.ButtonCreate = new System.Windows.Forms.Button();
+ ((System.ComponentModel.ISupportInitialize)(this.pictureBoxPlain)).BeginInit();
+ this.statusStrip.SuspendLayout();
+ this.SuspendLayout();
+ //
+ // pictureBoxPlain
+ //
+ this.pictureBoxPlain.Dock = System.Windows.Forms.DockStyle.Fill;
+ this.pictureBoxPlain.Location = new System.Drawing.Point(0, 0);
+ this.pictureBoxPlain.Name = "pictureBoxPlain";
+ this.pictureBoxPlain.Size = new System.Drawing.Size(535, 292);
+ this.pictureBoxPlain.SizeMode = System.Windows.Forms.PictureBoxSizeMode.AutoSize;
+ this.pictureBoxPlain.TabIndex = 0;
+ this.pictureBoxPlain.TabStop = false;
+ this.pictureBoxPlain.Resize += new System.EventHandler(this.PictureBoxPlain_Resize);
+ //
+ // statusStrip
+ //
+ this.statusStrip.ImageScalingSize = new System.Drawing.Size(20, 20);
+ this.statusStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
+ this.toolStripStatusLabelSpeed,
+ this.toolStripStatusLabelWeight,
+ this.toolStripStatusLabelColor});
+ this.statusStrip.Location = new System.Drawing.Point(0, 292);
+ this.statusStrip.Name = "statusStrip";
+ this.statusStrip.Size = new System.Drawing.Size(535, 26);
+ this.statusStrip.TabIndex = 1;
+ //
+ // toolStripStatusLabelSpeed
+ //
+ this.toolStripStatusLabelSpeed.Name = "toolStripStatusLabelSpeed";
+ this.toolStripStatusLabelSpeed.Size = new System.Drawing.Size(71, 20);
+ this.toolStripStatusLabelSpeed.Text = "скорость";
+ //
+ // toolStripStatusLabelWeight
+ //
+ this.toolStripStatusLabelWeight.Name = "toolStripStatusLabelWeight";
+ this.toolStripStatusLabelWeight.Size = new System.Drawing.Size(32, 20);
+ this.toolStripStatusLabelWeight.Text = "вес";
+ //
+ // toolStripStatusLabelColor
+ //
+ this.toolStripStatusLabelColor.Name = "toolStripStatusLabelColor";
+ this.toolStripStatusLabelColor.Size = new System.Drawing.Size(40, 20);
+ this.toolStripStatusLabelColor.Text = "цвет";
+ //
+ // buttonUp
+ //
+ this.buttonUp.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
+ this.buttonUp.BackgroundImage = global::AirPlaneWithRadar.Properties.Resources.up;
+ this.buttonUp.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
+ this.buttonUp.Location = new System.Drawing.Point(383, 223);
+ this.buttonUp.Name = "buttonUp";
+ this.buttonUp.Size = new System.Drawing.Size(30, 30);
+ this.buttonUp.TabIndex = 3;
+ this.buttonUp.Text = " ";
+ this.buttonUp.UseVisualStyleBackColor = true;
+ this.buttonUp.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::AirPlaneWithRadar.Properties.Resources.left;
+ this.buttonLeft.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
+ this.buttonLeft.Location = new System.Drawing.Point(347, 259);
+ this.buttonLeft.Name = "buttonLeft";
+ this.buttonLeft.Size = new System.Drawing.Size(30, 30);
+ this.buttonLeft.TabIndex = 4;
+ this.buttonLeft.Text = " ";
+ 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::AirPlaneWithRadar.Properties.Resources.down;
+ this.buttonDown.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
+ this.buttonDown.Location = new System.Drawing.Point(383, 259);
+ this.buttonDown.Name = "buttonDown";
+ this.buttonDown.Size = new System.Drawing.Size(30, 30);
+ this.buttonDown.TabIndex = 5;
+ this.buttonDown.Text = " ";
+ this.buttonDown.UseVisualStyleBackColor = true;
+ this.buttonDown.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::AirPlaneWithRadar.Properties.Resources.right;
+ this.buttonRight.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
+ this.buttonRight.Location = new System.Drawing.Point(419, 259);
+ this.buttonRight.Name = "buttonRight";
+ this.buttonRight.Size = new System.Drawing.Size(30, 30);
+ this.buttonRight.TabIndex = 6;
+ this.buttonRight.Text = " ";
+ this.buttonRight.UseVisualStyleBackColor = true;
+ this.buttonRight.Click += new System.EventHandler(this.ButtonMove_Click);
+ //
+ // 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, 259);
+ this.ButtonCreate.Name = "ButtonCreate";
+ this.ButtonCreate.Size = new System.Drawing.Size(94, 29);
+ this.ButtonCreate.TabIndex = 7;
+ this.ButtonCreate.Text = "Создать";
+ this.ButtonCreate.UseVisualStyleBackColor = true;
+ this.ButtonCreate.Click += new System.EventHandler(this.ButtonCreate_Click);
+ //
+ // FormPlain
+ //
+ this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 20F);
+ this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
+ this.ClientSize = new System.Drawing.Size(535, 318);
+ this.Controls.Add(this.ButtonCreate);
+ this.Controls.Add(this.buttonRight);
+ this.Controls.Add(this.buttonDown);
+ this.Controls.Add(this.buttonLeft);
+ this.Controls.Add(this.buttonUp);
+ this.Controls.Add(this.pictureBoxPlain);
+ this.Controls.Add(this.statusStrip);
+ this.Name = "FormPlain";
+ this.Text = "Form1";
+ ((System.ComponentModel.ISupportInitialize)(this.pictureBoxPlain)).EndInit();
+ this.statusStrip.ResumeLayout(false);
+ this.statusStrip.PerformLayout();
+ this.ResumeLayout(false);
+ this.PerformLayout();
+
+ }
+
+ #endregion
+
+ private PictureBox pictureBoxPlain;
+ private StatusStrip statusStrip;
+ private ToolStripStatusLabel toolStripStatusLabelWeight;
+ private ToolStripStatusLabel toolStripStatusLabelColor;
+ private Button buttonUp;
+ private Button buttonLeft;
+ private Button buttonDown;
+ private Button buttonRight;
+ public ToolStripStatusLabel toolStripStatusLabelSpeed;
+ private Button ButtonCreate;
+ }
+}
\ No newline at end of file
diff --git a/AirPlaneWithRadar/AirPlaneWithRadar/FormPlain.cs b/AirPlaneWithRadar/AirPlaneWithRadar/FormPlain.cs
new file mode 100644
index 0000000..52158d0
--- /dev/null
+++ b/AirPlaneWithRadar/AirPlaneWithRadar/FormPlain.cs
@@ -0,0 +1,64 @@
+namespace AirPlaneWithRadar
+{
+
+ public partial class FormPlain : Form
+ {
+ private DrawingPlain _plain;
+
+ public FormPlain()
+ {
+ InitializeComponent();
+
+ }
+
+ private void Draw()
+ {
+ Bitmap bmp = new(pictureBoxPlain.Width, pictureBoxPlain.Height);
+ Graphics gr = Graphics.FromImage(bmp);
+ _plain?.DrawTransoprt(gr);
+ pictureBoxPlain.Image = bmp;
+ }
+
+ private void ButtonCreate_Click(object sender, EventArgs e)
+ {
+ Random rnd = new();
+ _plain = new DrawingPlain();
+
+ _plain.Init(rnd.Next(100, 300), rnd.Next(1000, 2000), Color.FromArgb(rnd.Next(0, 256), rnd.Next(0, 256), rnd.Next(0, 256)));
+ _plain.setPosition(rnd.Next(10, 100), rnd.Next(10, 100), pictureBoxPlain.Width, pictureBoxPlain.Height);
+ toolStripStatusLabelSpeed.Text = $": {_plain.Plain.Speed}";
+ toolStripStatusLabelWeight.Text = $": {_plain.Plain.Weight}";
+ toolStripStatusLabelColor.Text = $": {_plain.Plain.BodyColor.Name}";
+ Draw();
+ }
+ private void ButtonMove_Click(object sender, EventArgs e)
+ {
+ string name = ((Button)sender)?.Name ?? string.Empty;
+ switch (name)
+ {
+ case "buttonUp":
+ _plain?.MoveTransport(Direction.Up);
+ break;
+ case "buttonDown":
+ _plain?.MoveTransport(Direction.Down);
+ break;
+ case "buttonLeft":
+ _plain?.MoveTransport(Direction.Left);
+ break;
+ case "buttonRight":
+ _plain?.MoveTransport(Direction.Right);
+ break;
+ }
+ Draw();
+ }
+
+ private void PictureBoxPlain_Resize(object sender, EventArgs e)
+ {
+ _plain?.ChangeBorders(pictureBoxPlain.Width, pictureBoxPlain.Height);
+ Draw();
+ }
+
+
+ }
+ }
+
diff --git a/AirPlaneWithRadar/AirPlaneWithRadar/FormPlain.resx b/AirPlaneWithRadar/AirPlaneWithRadar/FormPlain.resx
new file mode 100644
index 0000000..2c0949d
--- /dev/null
+++ b/AirPlaneWithRadar/AirPlaneWithRadar/FormPlain.resx
@@ -0,0 +1,63 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ 17, 17
+
+
\ No newline at end of file
diff --git a/AirPlaneWithRadar/AirPlaneWithRadar/Program.cs b/AirPlaneWithRadar/AirPlaneWithRadar/Program.cs
index e54f4a8..cdcf058 100644
--- a/AirPlaneWithRadar/AirPlaneWithRadar/Program.cs
+++ b/AirPlaneWithRadar/AirPlaneWithRadar/Program.cs
@@ -11,7 +11,7 @@ namespace AirPlaneWithRadar
// To customize application configuration such as set high DPI settings or default font,
// see https://aka.ms/applicationconfiguration.
ApplicationConfiguration.Initialize();
- Application.Run(new Form1());
+ Application.Run(new FormPlain());
}
}
}
\ No newline at end of file
diff --git a/AirPlaneWithRadar/AirPlaneWithRadar/Properties/Resources.Designer.cs b/AirPlaneWithRadar/AirPlaneWithRadar/Properties/Resources.Designer.cs
new file mode 100644
index 0000000..b290a3b
--- /dev/null
+++ b/AirPlaneWithRadar/AirPlaneWithRadar/Properties/Resources.Designer.cs
@@ -0,0 +1,103 @@
+//------------------------------------------------------------------------------
+//
+// Этот код создан программой.
+// Исполняемая версия:4.0.30319.42000
+//
+// Изменения в этом файле могут привести к неправильной работе и будут потеряны в случае
+// повторной генерации кода.
+//
+//------------------------------------------------------------------------------
+
+namespace AirPlaneWithRadar.Properties {
+ using System;
+
+
+ ///
+ /// Класс ресурса со строгой типизацией для поиска локализованных строк и т.д.
+ ///
+ // Этот класс создан автоматически классом StronglyTypedResourceBuilder
+ // с помощью такого средства, как ResGen или Visual Studio.
+ // Чтобы добавить или удалить член, измените файл .ResX и снова запустите ResGen
+ // с параметром /str или перестройте свой проект VS.
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "17.0.0.0")]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
+ internal class Resources {
+
+ private static global::System.Resources.ResourceManager resourceMan;
+
+ private static global::System.Globalization.CultureInfo resourceCulture;
+
+ [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
+ internal Resources() {
+ }
+
+ ///
+ /// Возвращает кэшированный экземпляр ResourceManager, использованный этим классом.
+ ///
+ [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
+ internal static global::System.Resources.ResourceManager ResourceManager {
+ get {
+ if (object.ReferenceEquals(resourceMan, null)) {
+ global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("AirPlaneWithRadar.Properties.Resources", typeof(Resources).Assembly);
+ resourceMan = temp;
+ }
+ return resourceMan;
+ }
+ }
+
+ ///
+ /// Перезаписывает свойство CurrentUICulture текущего потока для всех
+ /// обращений к ресурсу с помощью этого класса ресурса со строгой типизацией.
+ ///
+ [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
+ internal static global::System.Globalization.CultureInfo Culture {
+ get {
+ return resourceCulture;
+ }
+ set {
+ resourceCulture = value;
+ }
+ }
+
+ ///
+ /// Поиск локализованного ресурса типа System.Drawing.Bitmap.
+ ///
+ internal static System.Drawing.Bitmap down {
+ get {
+ object obj = ResourceManager.GetObject("down", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
+ }
+ }
+
+ ///
+ /// Поиск локализованного ресурса типа System.Drawing.Bitmap.
+ ///
+ internal static System.Drawing.Bitmap left {
+ get {
+ object obj = ResourceManager.GetObject("left", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
+ }
+ }
+
+ ///
+ /// Поиск локализованного ресурса типа System.Drawing.Bitmap.
+ ///
+ internal static System.Drawing.Bitmap right {
+ get {
+ object obj = ResourceManager.GetObject("right", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
+ }
+ }
+
+ ///
+ /// Поиск локализованного ресурса типа System.Drawing.Bitmap.
+ ///
+ internal static System.Drawing.Bitmap up {
+ get {
+ object obj = ResourceManager.GetObject("up", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
+ }
+ }
+ }
+}
diff --git a/AirPlaneWithRadar/AirPlaneWithRadar/Form1.resx b/AirPlaneWithRadar/AirPlaneWithRadar/Properties/Resources.resx
similarity index 84%
rename from AirPlaneWithRadar/AirPlaneWithRadar/Form1.resx
rename to AirPlaneWithRadar/AirPlaneWithRadar/Properties/Resources.resx
index 1af7de1..53ec0b4 100644
--- a/AirPlaneWithRadar/AirPlaneWithRadar/Form1.resx
+++ b/AirPlaneWithRadar/AirPlaneWithRadar/Properties/Resources.resx
@@ -117,4 +117,17 @@
System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ ..\Resources\down.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ ..\Resources\left.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ ..\Resources\right.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ ..\Resources\up.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
\ No newline at end of file
diff --git a/AirPlaneWithRadar/AirPlaneWithRadar/Resources/down.png b/AirPlaneWithRadar/AirPlaneWithRadar/Resources/down.png
new file mode 100644
index 0000000..00227ea
Binary files /dev/null and b/AirPlaneWithRadar/AirPlaneWithRadar/Resources/down.png differ
diff --git a/AirPlaneWithRadar/AirPlaneWithRadar/Resources/left.png b/AirPlaneWithRadar/AirPlaneWithRadar/Resources/left.png
new file mode 100644
index 0000000..367f28f
Binary files /dev/null and b/AirPlaneWithRadar/AirPlaneWithRadar/Resources/left.png differ
diff --git a/AirPlaneWithRadar/AirPlaneWithRadar/Resources/right.png b/AirPlaneWithRadar/AirPlaneWithRadar/Resources/right.png
new file mode 100644
index 0000000..cbf4721
Binary files /dev/null and b/AirPlaneWithRadar/AirPlaneWithRadar/Resources/right.png differ
diff --git a/AirPlaneWithRadar/AirPlaneWithRadar/Resources/up.png b/AirPlaneWithRadar/AirPlaneWithRadar/Resources/up.png
new file mode 100644
index 0000000..911050a
Binary files /dev/null and b/AirPlaneWithRadar/AirPlaneWithRadar/Resources/up.png differ