From 684da38e47a78348f34444deafb4be1484d064ac Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=92=D0=BE=D0=BB=D0=BE=D0=B4=D1=8F?= Date: Mon, 12 Sep 2022 10:16:10 +0300 Subject: [PATCH] =?UTF-8?q?=D0=9F=D0=B5=D1=80=D0=B2=D0=B0=D1=8F=20=D0=BB?= =?UTF-8?q?=D0=B0=D0=B1=D0=BE=D1=80=D0=B0=D1=82=D0=BE=D1=80=D0=BD=D0=B0?= =?UTF-8?q?=D1=8F=20=D1=80=D0=B0=D0=B1=D0=BE=D1=82=D0=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../AirPlaneWithRadar.csproj | 15 ++ .../AirPlaneWithRadar/Direction.cs | 16 ++ .../AirPlaneWithRadar/DrawingPlain.cs | 109 +++++++++++ .../AirPlaneWithRadar/EntetyPlain.cs | 26 +++ .../AirPlaneWithRadar/Form1.Designer.cs | 39 ---- AirPlaneWithRadar/AirPlaneWithRadar/Form1.cs | 10 - .../AirPlaneWithRadar/FormPlain.Designer.cs | 184 ++++++++++++++++++ .../AirPlaneWithRadar/FormPlain.cs | 64 ++++++ .../AirPlaneWithRadar/FormPlain.resx | 63 ++++++ .../AirPlaneWithRadar/Program.cs | 2 +- .../Properties/Resources.Designer.cs | 103 ++++++++++ .../{Form1.resx => Properties/Resources.resx} | 13 ++ .../AirPlaneWithRadar/Resources/down.png | Bin 0 -> 4798 bytes .../AirPlaneWithRadar/Resources/left.png | Bin 0 -> 4786 bytes .../AirPlaneWithRadar/Resources/right.png | Bin 0 -> 6045 bytes .../AirPlaneWithRadar/Resources/up.png | Bin 0 -> 4798 bytes 16 files changed, 594 insertions(+), 50 deletions(-) create mode 100644 AirPlaneWithRadar/AirPlaneWithRadar/Direction.cs create mode 100644 AirPlaneWithRadar/AirPlaneWithRadar/DrawingPlain.cs create mode 100644 AirPlaneWithRadar/AirPlaneWithRadar/EntetyPlain.cs delete mode 100644 AirPlaneWithRadar/AirPlaneWithRadar/Form1.Designer.cs delete mode 100644 AirPlaneWithRadar/AirPlaneWithRadar/Form1.cs create mode 100644 AirPlaneWithRadar/AirPlaneWithRadar/FormPlain.Designer.cs create mode 100644 AirPlaneWithRadar/AirPlaneWithRadar/FormPlain.cs create mode 100644 AirPlaneWithRadar/AirPlaneWithRadar/FormPlain.resx create mode 100644 AirPlaneWithRadar/AirPlaneWithRadar/Properties/Resources.Designer.cs rename AirPlaneWithRadar/AirPlaneWithRadar/{Form1.resx => Properties/Resources.resx} (84%) create mode 100644 AirPlaneWithRadar/AirPlaneWithRadar/Resources/down.png create mode 100644 AirPlaneWithRadar/AirPlaneWithRadar/Resources/left.png create mode 100644 AirPlaneWithRadar/AirPlaneWithRadar/Resources/right.png create mode 100644 AirPlaneWithRadar/AirPlaneWithRadar/Resources/up.png 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 0000000000000000000000000000000000000000..00227eac4cefacb1b21276ffb7b76bb1f60f5594 GIT binary patch literal 4798 zcmeHJ`&Uy}7Tz~E4_*==J|YHrDT=Vj1!RmG5f#DMfR2cRf@v(iJJe>fbk8Voz3;;0!5N&Y~;fhJue-8dISuajovj99+@PEv`h2Gitkf4j6Ff;r2&u{CNt8^YvbGhsNRpktarq2!*=n+TK4XBM=H#DmYKB_iLH?lD*>XS2{Xw&!1O5RG2D0P0mP(@b#-o| z%sRK8>FIKDyQ<*fVzz4t#mVX?a#8*{ZglYF1JcfYzyfS>;0&6MM`o9+1FdS23xJOw zCGIziFNn1B$)|X%HT#*fbuMn(^Ry2n?Z7>*3)hQm=t^7bU1Sg(Ll}rXHiqfk1nlO8 z`7F%B0RLFb6>X6@+XOjO-11|ZQ`rbwC=kyw&o=nl$KU<7)cs+Y)3aF>&^WBrj8>NoC%n?WC)w9@)&62Yp)5)~}i51c0>wT%i70;2~eBlFl)Q0@da+f>&NG#h~> zlG%Q+6~%sgwaW?kGSH8!n53Lu0j8BMb5KC$tIifCF z#E=8nF-e;iFtk&wr2lI82Kct1aU+!*+Z2+b4T7BHQydpOKAy}LF6qgQV_CMfT3m!T zn&efg$tjfcwrDj&Ojw1Y&sPFnfr0Mo&j3wFf%-Z>FvOrh_l2ooWl-SbbO~^QD9}g2 zfl-YDce}rbHe|RXT*ks`><~_IQ_e*or0;cv@R#ViTNhNLnyX<77DgeKlU2&iz(|d- zI~0u02vNAbflR!TwVXE#sXSy%j@;~m5M@Fb*zfZsMF#|7{MfJ{7RnLJh3MpFykAC6 z5e~dD7`1&a`*!Vw8~&KW=x5Fb9a8UGkpb3Jq`ukT%FM##TIOw*!aKgFg0FcQ(hw3I zuo$eX5hC@w#oP!$$bvE{tm9cYopLp6G4hy%2(aa1NoVOUsIIMMM(K&|y4}9D@$dHVPunOC_H}{xTNYQSo)~VZlPrus6 z{sFrvr6JlC-eOwZ+;1Zh^6$O%j6s2$ox%o@rC3!reKVL@%=IBfBXs#th)Ii)kw;i~ zP2q8=br>V%+;)$FsyGyt7aalTuwv<@%t7Yjt9-{jVYjZ@%$m?AxYg1vZU_$hX zDsf>`iOBj966Qw%1Xz!UMc#M+)u%a`tYFuhRd8~b(B6wR)m!Uci|BI{r*HTL_@;v$ zyD!3>$%N5gz9_f%rOhYQg`Ppk+J^twTNifhtO4Gr^>shXAsi(bM=>sZztgIb0D7Kz z?w4wiqkct#2so4ttKH6kb`oJ4;^aVaNWh(`FGRK>C}mtCKsBb_sMzmJ+c1dJ@tT`! z&w~oR!#+=_U+E&tgK7zH)ZN-{G)>QvmXEMsY`Zg=`!*M+ztJ+90zun9HMdlkhB?wE zJjyu?G16Rnya>_4DT}L;C>7oz)ag@O-?iiNql!)3@(@ks?P66 z60nyp1v-He`;v^B*N;@=LiT7+; zR$v>qTujUp2h3ZyD*syVa)3gN+5KL*Z(5Wk z6;hB__l~n2TJh*l8KW;|*#4oFeEYfTVV8t{Bgk%9Qhs1(+W;sOg3|tne4Et}gK6lD zFNY|sqd79ik^10{r8AwN6x-LVNpqwcTsXG~J@<294GZ!;$bP(?@BWfxH)^sVPX{q* z6P>p`?|yOC?$GuT0QW-QzPa+onS|oKuz&ejbK3^*Dm@2Ep*9dX@F!2lhg)Sp(X>Qr_cOpX{p?Nizb7Dszq`+6$bD?zE-+0K- zUdXkhvLHSRvgpTxh?1j{)n}Yc$0YVhT-8B{- z@(GIl?O$;-($*AKiAXut`q1fvH7h(}tk7*yO>Jx;c1}s}!ovgM`~vTh_I`|NzMsx7 iB;&;a$b0|p?fAoAzy6)0@AW!-2i@fO=pz#i8~zJZ+7k-^ literal 0 HcmV?d00001 diff --git a/AirPlaneWithRadar/AirPlaneWithRadar/Resources/left.png b/AirPlaneWithRadar/AirPlaneWithRadar/Resources/left.png new file mode 100644 index 0000000000000000000000000000000000000000..367f28f3442a14e21bdd3be013bd8f39336bbb17 GIT binary patch literal 4786 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 CSFWJ| literal 0 HcmV?d00001 diff --git a/AirPlaneWithRadar/AirPlaneWithRadar/Resources/up.png b/AirPlaneWithRadar/AirPlaneWithRadar/Resources/up.png new file mode 100644 index 0000000000000000000000000000000000000000..911050ac76f918ed486e6a7cbf8680c9c807797b GIT binary patch literal 4798 zcmeHJ|5p=N7QZtCNq~g#O$``D#0^zZM?^)55QHL#fQTY4h@%40J-C~y2eDF|qb<;F zHdaMMrJ$>;Rau&Px=2f9pHQi;3cB^ws3`FZcvM=W)-_hty)!uUZ|FJxkdw)MpM2iE zpLg%)&Bt?7W~tl*+yOw9m=HG)z=a2(%M~<6$`S|v5x=N4^JdM2`gZL-{NZAZNsa;d za*IdbQdj)#W=dGJ2Eb>n@S$$x2NvN&dSYD6{GyznuANyu^sK6IuIg0s%9Yta-y#4cbszrdP*m;Bn> z#gMfw8URBaPq80<(UEQ8pe}|-R2+scH+7S4g^bYnJS05>dSel#IxHi-7+Cnt@x$R7 zNcZJ1S#L^4@`gtmr){Fx36u=L%bSDj+q+^bgEg?-M}oN4L@yN}!4l+>WqOVf7$yY{ zSY~7ifgw_0ZF@wf5WpS!S>xIx7YG3lDd5*0HBSh*N`dP7X{kaWY9Me_KSu~e3r_x1>v#e?|q}e5riuz+YV0{rXVXY zCQ4^IaM6;2(kb7Sq$~4((s>7^ix_~Ix2lr`$V>?$*S!8tfG8x0qi&HU2_e}j5+rrk zgE|57uK`G-zk0R+Nsu7w-Onln$btb#`IRjR0%TyLby>HI5n@QiQYNTmhB-WC3cN^z z8jr3ZIhCG^MR&&31DS*zP3b!z7r&4Di~+|e)aR-XUk;32=i>@BAq1Q^JfHr9r4$Ml zKwKF5qPkRj5+e2h15l3P=402=PJ1i)bTmMpz3RKQ2J9wU2{2+L?yEM|J}V9YZIV>^>(!3udpcZr2KRB6${71Q_`j)P z47BSA*f-qw<71KjRS*j!kk+mX7{uR2=mA%;w>xJariJ>fk!ck8W1Z_R90ff#ctLUs z7!rAkd@z5kDA5ZaAMiq{_RL$-;kZXRG*Z(>gz?kCOys&VTZarki&7pu>QD9JcH1#RqR$}tYJ zj9Ln?*^2{{=ARzqvWte?8byH_(xa3?e>eff@jMlpBm=QUwW%*@ zp>3@?3V^}GHo2>mqzg$lnO}j>>R?Q3fj*r3y0!~yaR^K!XDG=ATFH%W`v5fP7@1|i z25f)m%H!Yqdp@*fS6*)OFet%E@2`ZGS3Y`f0Vj$l`Um-?IwSw)9@-%N?$j>mx%Gm! zRRhCU$QT>aR#l}9haNoNy$7qQhCdL<&nuVn_fXMBzC>o*j)-lKhC%))Ji&l50bDGm z6eU{+RTao_cEw8mx`O4;Xs%FP4oX~q;B%@0$?}(F%K5{1*o{^7GFusvlukqvY+w8P z_X9XzB=MB3g-jkvf>spp!;r*HbDrW*dsJN(6UXB+jSj$onK zoLsggXv5C}r?GJ0zjV!C}P=*@kKWaJBnI( zsGteYjSYP2$&N-66%!5x=qaQkTu;nM;%aW!wy52>>9lfh{t6kt3dO9ds*zWH0!)Jc zPKq<4QauOnQ#zD;x-1XGL%p|h1HT9rEBE#X%+X4Jq!w&>E~{lA8W}P_Y?o_lfrDEXnjsQN)h>eXaZs$X}4N^6$^7cvLzi*G~pFa7wHJ-D)-za~vGYfsz*BB4f7`#9;?=@Nm5asRCnwF{0x@Fkb?4%NLx->@lrEOtF}ksy z$Ru7``HBHvh(1@K|RJm_32-C{{%{BzG zQBM7-2oLB)(*-na7lB4FD%1UqhuLiUy7nMjojnPn}KQE5i|&j zwxM)v*Q+qy@&P!mKjc`VqrdvTPWv{FS?Z|sv>(%^Kk9di3b z+)B7P_~a{Ht=sh@f3xYr+%@VlM+N+hcGFK{`D}*v^k%vdn_IlYxCsqUO%WaL_CnmD ze4;lrVogw!*F>4{)up$ESM*=fa_enq{0Nu^F5Cs;@s{D2+txxc_QZopeze$8WNB|C zH0ua|%3n_L@1e2T6B>pKj!pif+yrDU_NIw#Qu7@OmRl5WX#7;J5X@RU39`GO>*i`K zcEEK#j;$+;DKf)G>459n+J=?hN~FI<#}bRl{OjUK<>^)zC%(CeHf;6GD%4cob#n|< z=l#D2Y{V8ndx*4+d%=%O-D}369rl<1e&K!ATRm8q>7M*5281E!D^9psCsDFF=QMIS zC%ouPzUIqi(aNeFlqXbK@W11^GP)PtKRxW5le9ipFzfy!cy8O>8m2dLQ>DNe+s@Wy z`af}FrNAy*Me8>GDlSk8th8-yZPA+qukPoVX0xSj77hw literal 0 HcmV?d00001 -- 2.25.1