From c61311f5b5350b4439e7464cf84a251cac8b47c1 Mon Sep 17 00:00:00 2001
From: ksenianeva <95441235+ksenianeva@users.noreply.github.com>
Date: Tue, 20 Sep 2022 11:47:07 +0400
Subject: [PATCH 1/3] =?UTF-8?q?=D0=9F=D0=B5=D1=80=D0=B2=D0=B0=D1=8F=20?=
=?UTF-8?q?=D0=BB=D0=B0=D0=B1=D0=BE=D1=80=D0=B0=D1=82=D0=BE=D1=80=D0=BD?=
=?UTF-8?q?=D0=B0=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
---
.../ContainerShip/ContainerShip.csproj | 15 ++
ContainerShip/ContainerShip/Direction.cs | 16 ++
ContainerShip/ContainerShip/DrawingShip.cs | 160 +++++++++++++++
.../ContainerShip/EntityContainerShip.cs | 42 ++++
ContainerShip/ContainerShip/Form1.Designer.cs | 39 ----
ContainerShip/ContainerShip/Form1.cs | 10 -
.../ContainerShip/FormShip.Designer.cs | 182 ++++++++++++++++++
ContainerShip/ContainerShip/FormShip.cs | 76 ++++++++
ContainerShip/ContainerShip/FormShip.resx | 120 ++++++++++++
ContainerShip/ContainerShip/Program.cs | 2 +-
.../Properties/Resources.Designer.cs | 73 +++++++
.../{Form1.resx => Properties/Resources.resx} | 4 +
.../ContainerShip/Resources/RightArrow.png | Bin 0 -> 847 bytes
13 files changed, 689 insertions(+), 50 deletions(-)
create mode 100644 ContainerShip/ContainerShip/Direction.cs
create mode 100644 ContainerShip/ContainerShip/DrawingShip.cs
create mode 100644 ContainerShip/ContainerShip/EntityContainerShip.cs
delete mode 100644 ContainerShip/ContainerShip/Form1.Designer.cs
delete mode 100644 ContainerShip/ContainerShip/Form1.cs
create mode 100644 ContainerShip/ContainerShip/FormShip.Designer.cs
create mode 100644 ContainerShip/ContainerShip/FormShip.cs
create mode 100644 ContainerShip/ContainerShip/FormShip.resx
create mode 100644 ContainerShip/ContainerShip/Properties/Resources.Designer.cs
rename ContainerShip/ContainerShip/{Form1.resx => Properties/Resources.resx} (93%)
create mode 100644 ContainerShip/ContainerShip/Resources/RightArrow.png
diff --git a/ContainerShip/ContainerShip/ContainerShip.csproj b/ContainerShip/ContainerShip/ContainerShip.csproj
index b57c89e..13ee123 100644
--- a/ContainerShip/ContainerShip/ContainerShip.csproj
+++ b/ContainerShip/ContainerShip/ContainerShip.csproj
@@ -8,4 +8,19 @@
enable
+
+
+ True
+ True
+ Resources.resx
+
+
+
+
+
+ ResXFileCodeGenerator
+ Resources.Designer.cs
+
+
+
\ No newline at end of file
diff --git a/ContainerShip/ContainerShip/Direction.cs b/ContainerShip/ContainerShip/Direction.cs
new file mode 100644
index 0000000..0ab478a
--- /dev/null
+++ b/ContainerShip/ContainerShip/Direction.cs
@@ -0,0 +1,16 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace ContainerShip
+{
+ internal enum Direction
+ {
+ Up = 1,
+ Down = 2,
+ Left = 3,
+ Right = 4
+ }
+}
diff --git a/ContainerShip/ContainerShip/DrawingShip.cs b/ContainerShip/ContainerShip/DrawingShip.cs
new file mode 100644
index 0000000..806a413
--- /dev/null
+++ b/ContainerShip/ContainerShip/DrawingShip.cs
@@ -0,0 +1,160 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+using static ContainerShip.EntityContainerShip;
+
+namespace ContainerShip
+{
+ internal class DrawingShip
+ {
+ public EntityContainerShip Ship { private set; get; }
+ private float _startPosX;
+ private float _startPosY;
+ private int? _pictureWidth = null;
+ private int _startPosXInt;
+ private int _startPosYInt;
+ ///
+ /// Высота окна отрисовки
+ ///
+ private int? _pictureHeight = null;
+ ///
+ /// Ширина отрисовки автомобиля
+ ///
+ private readonly int _shipWidth = 120;
+ ///
+ /// Высота отрисовки автомобиля
+ ///
+ private readonly int _shipHeight = 40;
+ ///
+ /// Инициализация свойств
+ ///
+ /// Скорость
+ /// Вес автомобиля
+ /// Цвет кузова
+ public void Init(int speed, float weight, Color bodyColor)
+ {
+ Ship = new EntityContainerShip();
+ Ship.Init(speed, weight, bodyColor);
+ }
+
+ /// Координата X
+ /// Координата Y
+ /// Ширина картинки
+ /// Высота картинки
+ public void SetPosition(int x, int y, int width, int height)
+ {
+ // Проверки
+ Random rn = new Random();
+ if (x < 0 || x > width)
+ {
+ x = rn.Next(0, width - _shipWidth);
+ }
+ if (y < 0 || y > height)
+ {
+ y = rn.Next(0, height - _shipHeight);
+ }
+ _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 + _shipWidth + Ship.Step < _pictureWidth)
+ {
+ _startPosX += Ship.Step;
+ }
+ break;
+ case Direction.Left:
+ if (_startPosX - Ship.Step > 0)
+ {
+ _startPosX -= Ship.Step;
+ }
+ break;
+ case Direction.Up:
+ if (_startPosY - Ship.Step > 0)
+ {
+ _startPosY -= Ship.Step;
+ }
+ break;
+ case Direction.Down:
+ if (_startPosY + _shipHeight + Ship.Step < _pictureHeight)
+ {
+ _startPosY += Ship.Step;
+ }
+ break;
+ }
+ }
+ ///
+ /// Отрисовка
+ ///
+ ///
+ public void DrawTransport(Graphics g)
+ {
+ if (_startPosX < 0 || _startPosY < 0
+ || !_pictureHeight.HasValue || !_pictureWidth.HasValue)
+ {
+ return;
+ }
+ _startPosXInt = Convert.ToInt32(_startPosX);
+ _startPosYInt = Convert.ToInt32(_startPosY);
+ Pen pen = new(Color.Black);
+
+ Point[] circuit =
+ {
+ new Point(_startPosXInt + 30, _startPosYInt),
+ new Point(_startPosXInt + 100, _startPosYInt),
+ new Point(_startPosXInt + 100, _startPosYInt + 15),
+ new Point(_startPosXInt + 135, _startPosYInt + 15),
+ new Point(_startPosXInt + 115 , _startPosYInt + 40),
+ new Point(_startPosXInt + 20, _startPosYInt + 40),
+ new Point(_startPosXInt, _startPosYInt + 15),
+ new Point(_startPosXInt + 30, _startPosYInt + 15),
+ new Point(_startPosXInt + 30, _startPosYInt),
+ };
+ Brush br = new SolidBrush(Ship?.BodyColor ?? Color.Black);
+ g.FillPolygon(br, circuit);
+ g.DrawPolygon(pen, circuit);
+ g.DrawLine(pen, _startPosXInt + 30, _startPosYInt + 15, _startPosXInt + 100, _startPosYInt + 15);
+ g.DrawLine(pen, _startPosXInt + 30, _startPosYInt + 20, _startPosXInt + 30, _startPosYInt + 30);
+ g.DrawLine(pen, _startPosXInt + 25, _startPosYInt + 25, _startPosXInt + 35, _startPosYInt + 25);
+ g.DrawLine(pen, _startPosXInt + 25, _startPosYInt + 30, _startPosXInt + 35, _startPosYInt + 30);
+
+ }
+ ///
+ /// Смена границ формы отрисовки
+ ///
+ /// Ширина картинки
+ /// Высота картинки
+ public void ChangeBorders(int width, int height)
+ {
+ _pictureWidth = width;
+ _pictureHeight = height;
+ if (_pictureWidth <= _shipWidth || _pictureHeight <= _shipHeight)
+ {
+ _pictureWidth = null;
+ _pictureHeight = null;
+ return;
+ }
+ if (_startPosX + _shipWidth > _pictureWidth)
+ {
+ _startPosX = _pictureWidth.Value - _shipWidth;
+ }
+ if (_startPosY + _shipHeight > _pictureHeight)
+ {
+ _startPosY = _pictureHeight.Value - _shipHeight;
+ }
+ }
+ }
+}
diff --git a/ContainerShip/ContainerShip/EntityContainerShip.cs b/ContainerShip/ContainerShip/EntityContainerShip.cs
new file mode 100644
index 0000000..a5dbc3f
--- /dev/null
+++ b/ContainerShip/ContainerShip/EntityContainerShip.cs
@@ -0,0 +1,42 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace ContainerShip
+{
+ internal class EntityContainerShip
+ {
+ ///
+ /// Скорость
+ ///
+ 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 rnd = new();
+ Speed = speed <= 0 ? rnd.Next(50, 150) : speed;
+ Weight = weight <= 0 ? rnd.Next(40, 70) : weight;
+ BodyColor = bodyColor;
+ }
+ }
+}
diff --git a/ContainerShip/ContainerShip/Form1.Designer.cs b/ContainerShip/ContainerShip/Form1.Designer.cs
deleted file mode 100644
index 91e25af..0000000
--- a/ContainerShip/ContainerShip/Form1.Designer.cs
+++ /dev/null
@@ -1,39 +0,0 @@
-namespace ContainerShip
-{
- 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/ContainerShip/ContainerShip/Form1.cs b/ContainerShip/ContainerShip/Form1.cs
deleted file mode 100644
index 4e3e4f7..0000000
--- a/ContainerShip/ContainerShip/Form1.cs
+++ /dev/null
@@ -1,10 +0,0 @@
-namespace ContainerShip
-{
- public partial class Form1 : Form
- {
- public Form1()
- {
- InitializeComponent();
- }
- }
-}
\ No newline at end of file
diff --git a/ContainerShip/ContainerShip/FormShip.Designer.cs b/ContainerShip/ContainerShip/FormShip.Designer.cs
new file mode 100644
index 0000000..618edd4
--- /dev/null
+++ b/ContainerShip/ContainerShip/FormShip.Designer.cs
@@ -0,0 +1,182 @@
+namespace ContainerShip
+{
+ partial class FormShip
+ {
+ ///
+ /// 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()
+ {
+ System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FormShip));
+ this.statusStrip1 = new System.Windows.Forms.StatusStrip();
+ this.toolStripStatusLabelSpeed = new System.Windows.Forms.ToolStripStatusLabel();
+ this.toolStripStatusLabelWeight = new System.Windows.Forms.ToolStripStatusLabel();
+ this.toolStripStatusLabelBodyColor = new System.Windows.Forms.ToolStripStatusLabel();
+ this.buttonRight = new System.Windows.Forms.Button();
+ this.buttonUp = new System.Windows.Forms.Button();
+ this.buttonDown = new System.Windows.Forms.Button();
+ this.buttonLeft = new System.Windows.Forms.Button();
+ this.pictureBoxShip = new System.Windows.Forms.PictureBox();
+ this.ButtonCreate = new System.Windows.Forms.Button();
+ this.statusStrip1.SuspendLayout();
+ ((System.ComponentModel.ISupportInitialize)(this.pictureBoxShip)).BeginInit();
+ this.SuspendLayout();
+ //
+ // statusStrip1
+ //
+ this.statusStrip1.ImageScalingSize = new System.Drawing.Size(24, 24);
+ this.statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
+ this.toolStripStatusLabelSpeed,
+ this.toolStripStatusLabelWeight,
+ this.toolStripStatusLabelBodyColor});
+ this.statusStrip1.Location = new System.Drawing.Point(0, 418);
+ this.statusStrip1.Name = "statusStrip1";
+ this.statusStrip1.Size = new System.Drawing.Size(800, 32);
+ this.statusStrip1.TabIndex = 0;
+ this.statusStrip1.Text = "statusStrip1";
+ //
+ // toolStripStatusLabelSpeed
+ //
+ this.toolStripStatusLabelSpeed.Name = "toolStripStatusLabelSpeed";
+ this.toolStripStatusLabelSpeed.Size = new System.Drawing.Size(93, 25);
+ this.toolStripStatusLabelSpeed.Text = "Скорость:";
+ //
+ // toolStripStatusLabelWeight
+ //
+ this.toolStripStatusLabelWeight.Name = "toolStripStatusLabelWeight";
+ this.toolStripStatusLabelWeight.Size = new System.Drawing.Size(43, 25);
+ this.toolStripStatusLabelWeight.Text = "Вес:";
+ //
+ // toolStripStatusLabelBodyColor
+ //
+ this.toolStripStatusLabelBodyColor.Name = "toolStripStatusLabelBodyColor";
+ this.toolStripStatusLabelBodyColor.Size = new System.Drawing.Size(55, 25);
+ this.toolStripStatusLabelBodyColor.Text = "Цвет:";
+ //
+ // buttonRight
+ //
+ this.buttonRight.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
+ this.buttonRight.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("buttonRight.BackgroundImage")));
+ this.buttonRight.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
+ this.buttonRight.Location = new System.Drawing.Point(738, 353);
+ this.buttonRight.Name = "buttonRight";
+ this.buttonRight.Size = new System.Drawing.Size(50, 50);
+ this.buttonRight.TabIndex = 2;
+ this.buttonRight.UseVisualStyleBackColor = true;
+ this.buttonRight.Click += new System.EventHandler(this.ButtonMove_Click);
+ //
+ // buttonUp
+ //
+ this.buttonUp.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
+ this.buttonUp.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("buttonUp.BackgroundImage")));
+ this.buttonUp.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
+ this.buttonUp.Location = new System.Drawing.Point(682, 306);
+ this.buttonUp.Name = "buttonUp";
+ this.buttonUp.Size = new System.Drawing.Size(50, 50);
+ this.buttonUp.TabIndex = 3;
+ this.buttonUp.UseVisualStyleBackColor = true;
+ this.buttonUp.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 = ((System.Drawing.Image)(resources.GetObject("buttonDown.BackgroundImage")));
+ this.buttonDown.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
+ this.buttonDown.Location = new System.Drawing.Point(682, 352);
+ this.buttonDown.Name = "buttonDown";
+ this.buttonDown.Size = new System.Drawing.Size(50, 50);
+ this.buttonDown.TabIndex = 4;
+ this.buttonDown.UseVisualStyleBackColor = true;
+ this.buttonDown.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.RightArrow;
+ this.buttonLeft.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
+ this.buttonLeft.Location = new System.Drawing.Point(626, 353);
+ this.buttonLeft.Name = "buttonLeft";
+ this.buttonLeft.Size = new System.Drawing.Size(50, 50);
+ this.buttonLeft.TabIndex = 5;
+ this.buttonLeft.UseVisualStyleBackColor = true;
+ this.buttonLeft.Click += new System.EventHandler(this.ButtonMove_Click);
+ //
+ // 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, 418);
+ this.pictureBoxShip.TabIndex = 7;
+ this.pictureBoxShip.TabStop = false;
+ //
+ // ButtonCreate
+ //
+ this.ButtonCreate.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
+ this.ButtonCreate.BackColor = System.Drawing.SystemColors.Window;
+ this.ButtonCreate.Location = new System.Drawing.Point(12, 381);
+ this.ButtonCreate.Name = "ButtonCreate";
+ this.ButtonCreate.Size = new System.Drawing.Size(112, 34);
+ this.ButtonCreate.TabIndex = 8;
+ this.ButtonCreate.Text = "Создать";
+ this.ButtonCreate.UseVisualStyleBackColor = false;
+ this.ButtonCreate.Click += new System.EventHandler(this.ButtonCreate_Click);
+ //
+ // FormShip
+ //
+ this.AutoScaleDimensions = new System.Drawing.SizeF(10F, 25F);
+ this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
+ this.ClientSize = new System.Drawing.Size(800, 450);
+ this.Controls.Add(this.ButtonCreate);
+ this.Controls.Add(this.buttonLeft);
+ this.Controls.Add(this.buttonDown);
+ this.Controls.Add(this.buttonUp);
+ this.Controls.Add(this.buttonRight);
+ this.Controls.Add(this.pictureBoxShip);
+ this.Controls.Add(this.statusStrip1);
+ this.Name = "FormShip";
+ this.Text = "Грузовой корабль";
+ this.Click += new System.EventHandler(this.ButtonMove_Click);
+ this.statusStrip1.ResumeLayout(false);
+ this.statusStrip1.PerformLayout();
+ ((System.ComponentModel.ISupportInitialize)(this.pictureBoxShip)).EndInit();
+ this.ResumeLayout(false);
+ this.PerformLayout();
+
+ }
+
+ #endregion
+
+ private StatusStrip statusStrip1;
+ private Button buttonRight;
+ private Button buttonUp;
+ private Button buttonDown;
+ private Button buttonLeft;
+ private ToolStripStatusLabel toolStripStatusLabelSpeed;
+ private ToolStripStatusLabel toolStripStatusLabelWeight;
+ private ToolStripStatusLabel toolStripStatusLabelBodyColor;
+ private PictureBox pictureBoxShip;
+ private Button ButtonCreate;
+ }
+}
\ No newline at end of file
diff --git a/ContainerShip/ContainerShip/FormShip.cs b/ContainerShip/ContainerShip/FormShip.cs
new file mode 100644
index 0000000..46bfc3c
--- /dev/null
+++ b/ContainerShip/ContainerShip/FormShip.cs
@@ -0,0 +1,76 @@
+namespace ContainerShip
+{
+ public partial class FormShip : Form
+ {
+ private DrawingShip _ship;
+ public FormShip()
+ {
+ InitializeComponent();
+ }
+ ///
+ ///
+ ///
+ private void Draw()
+ {
+ Bitmap bmp = new(pictureBoxShip.Width, pictureBoxShip.Height);
+ Graphics gr = Graphics.FromImage(bmp);
+ _ship?.DrawTransport(gr);
+ pictureBoxShip.Image = bmp;
+ }
+ ///
+ /// ""
+ ///
+ ///
+ ///
+
+
+ ///
+ ///
+ ///
+ ///
+ ///
+ private void ButtonMove_Click(object sender, EventArgs e)
+ {
+ //
+ string name = ((Button)sender)?.Name ?? string.Empty;
+ switch (name)
+ {
+ case "buttonUp":
+ _ship?.MoveTransport(Direction.Up);
+ break;
+ case "buttonDown":
+ _ship?.MoveTransport(Direction.Down);
+ break;
+ case "buttonLeft":
+ _ship?.MoveTransport(Direction.Left);
+ break;
+ case "buttonRight":
+ _ship?.MoveTransport(Direction.Right);
+ break;
+ }
+ Draw();
+ }
+ ///
+ ///
+ ///
+ ///
+ ///
+ private void PictureBoxCar_Resize(object sender, EventArgs e)
+ {
+ _ship?.ChangeBorders(pictureBoxShip.Width, pictureBoxShip.Height);
+ Draw();
+ }
+
+ private void ButtonCreate_Click(object sender, EventArgs e)
+ {
+ Random rnd = new();
+ _ship = new DrawingShip();
+ _ship.Init(rnd.Next(100, 300), rnd.Next(1000, 2000), Color.FromArgb(rnd.Next(0, 256), rnd.Next(0, 256), rnd.Next(0, 256)));
+ _ship.SetPosition(rnd.Next(10, 100), rnd.Next(10, 100), pictureBoxShip.Width, pictureBoxShip.Height);
+ toolStripStatusLabelSpeed.Text = $": {_ship.Ship.Speed}";
+ toolStripStatusLabelWeight.Text = $": {_ship.Ship.Weight}";
+ toolStripStatusLabelBodyColor.Text = $": {_ship.Ship.BodyColor.Name}";
+ Draw();
+ }
+ }
+}
\ No newline at end of file
diff --git a/ContainerShip/ContainerShip/FormShip.resx b/ContainerShip/ContainerShip/FormShip.resx
new file mode 100644
index 0000000..0dc3800
--- /dev/null
+++ b/ContainerShip/ContainerShip/FormShip.resx
@@ -0,0 +1,120 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 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
+
+
+
+
+ iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAYAAACqaXHeAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAW
+ JQAAFiUBSVIk8AAAAnlJREFUeF7tmr2uaUEUx8kRIQqhQqFQakXlAUjQEInEQygVHkCotDqJDpX4KGg8
+ gUZUOhKF0PkO62adrHNzrzt32w777n1n5pf8swq2mfVL2LNnmEBwpACqwiIFUBUWKYCqsEgBVIVFCqAq
+ LFIAVWGRAqgKi6EEbDYbaDabUKvVoNfrwX6/p1e0wxACjscjFAoFsFqtYDKZfsblckGj0aB3aYPuAq7X
+ K2Qymd8av08+n4fb7UZXvBfdBbRaLWbT98nlcnA+n+mq96G7gGg0ymyYlXg8Drvdjq58D7oL8Pv9zGb/
+ lkgkAtvtlq5+Hd0FOJ1OZqNKCQaDsFwu6RNe4ykB6/UaSqUSJBIJCIfDEAqFXs7HxwezyUcJBAIwn89p
+ Zt9HtYDhcPh5W2JNRq94PB6YTCY0w++hSsB0OgWHw8GchN7Br9B4PKaZPo8qAalUijm4UWK326HT6dBs
+ n+OhgMvlAjabjTmwkWKxWKBer9Os1fNQwGq1Yg5oxJjNZqhWqzRzdTwUsFgsmIMZNSgBH6jUwp0AjNfr
+ hcPhQB0ow6UATLfbpQ6U4VZAuVymDpThVkClUqEOlOFWQL/fpw6U4VKAz+f73GVSA3cC8DaImyxqeShA
+ +IUQLoVxrc0a0EjRbCmMpNNp5qBGiaYPQ8hsNhP7cRgZjUbgdruZk9Ar/2xD5As8ucEVVjKZFG9LTCv+
+ q01RLRB+WzwWizEbZYXLg5F2u81s9j7cHo3h4Wg2m2U2/RWuD0eR0+kExWLxj+NxvO1yfzz+K/jjhl8J
+ /IPEYDBQva31CoYSoAdSAFVhkQKoCosUQFVYpACqwiIFUBUWKYCqsEgBVAUF4Ad9YZwDE2SIxgAAAABJ
+ RU5ErkJggg==
+
+
+
+
+ iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAYAAACqaXHeAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAW
+ JQAAFiUBSVIk8AAAArJJREFUeF7tmr2uqUEUhgkRohCqTaFQakXlAkjQEInERSgVLkDsSquT6FCJn4LG
+ FWhEpSNRCJ3/sE6WjOLkrMg+83dO8s2TvJnCzJq1nmQn2/exgcUxAthqWYwAtloWI4CtlsUIYKtl+ScC
+ zuczDAYDqNfr8P39DaPRCC6XC/tUL9oFdDodCAaDYLPZfksoFIJut8t26UOrgEajAXa7/Y/h38HPcI9O
+ tAlotVofh38H9+BeXWgR0O/3wel0kgNTwb14RgfKBcxmM/B4POSgn4Jn8KxqlAqYz+fg8/nIAX8SPIs1
+ VKJMwGq1gq+vL3KwvwnWwFqqUCJgs9lAJBIhB+IJ1sKaKpAu4HA4QDQaJQcRCdbE2rKRKuB4PEIikSAH
+ kBGsjXfIRJqA2+0G6XSabFxm8A68SxZSBDyfTyiVSmTDKoJ34Z0ykCKgXC6TjaoM3ikDYQHtdptsUEfw
+ blGEBJxOJ/D7/WRzOhIIBF5frUUQEjAcDsnGdGY8HrNu+BAS0Gw2yaZ0BnsQQUgAPtygmtKZXq/HuuFD
+ SMB+vweXy0U2piN4t+h/h0ICkEqlQjanI9VqlXXBj7AAfJhZKBTIBlWmWCzC9XplXfAjLAB5PB6vB5rJ
+ ZBLC4fDre7zD4SAb5wnWwppYO5VKvf7u8U4ZSBFAEYvFyGF4grVUYQSwVTpGgBFgBJDD8MQIMAKMAFZV
+ PkYAW6VjBBgBRgA5DE+MACPACGBV5aNMQDweJ4fhCdZShTIBmUyGHIYn2WyWVZWPMgG1Wo0chif4i1JV
+ KBOw2+2kvDfE93/4/kEVygQgk8kEvF4vOdhPgmen0ymrpgalApDFYgG5XA7cbjc5JBX8jWA+n4flcsmq
+ qEO5gDf3+x222y2s1+uPwT24VxfaBPyvGAFstSxGAFstixHAVsticQEAvwDQzJwDPf7RTAAAAABJRU5E
+ rkJggg==
+
+
+
+
+ iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAYAAACqaXHeAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAW
+ JQAAFiUBSVIk8AAAArtJREFUeF7tmrtqakEUhg0RUSxEq2hhYWkrVj5ABLVJEIQ8hGWKPICYytZOSKdW
+ wUuhjU9gI6nSJWARtIsaRVf4ZQ4cOIugc8uBPR/8TOHMmrU+CMS99ZHHcQLE6lmcALF6FidArJ7FCRCr
+ cXa7Hc3nc3p7e/sx2IO9tjAu4OXlhW5vbykUCpHP5zspwWCQbm5uaDabiSrmMCpgPB5TOBxmhzwlODsa
+ jUQ1MxgTsFgsKBaLsYOdk2g0Sh8fH6KqfowJqNfr7EAyqdVqoqp+jAkolUrsMDIpFouiqn6MCchms+ww
+ MkEtUxgTkMlk2GFkglqmcALEqh0nwAlwAthhZOIEOAFOgKiqHydArNpxApwAJ4AdRiZOgBPgBIiq+tEi
+ YL/fU7fbpXw+T8lkkiKRCF1eXrLDyAS1UBO1r6+vqdPpHO/UgbKAr68vqlQqbOMmUy6XabPZiC7kURbw
+ 8PDANmgj9/f3ogt5lAQsl0sKBAJsczaCu/H+QQUlAfi75xqzmXa7LbqRQ0lAs9lkm7IZ9KCCkoDhcMg2
+ ZTP9fl90I4eSgPV6reX9n2zw3nC1Wolu5FASAJ6entjmbAR3q6IsAFSrVbZBk8GdOtAi4HA40N3dHduo
+ ieAu3KkDLQLAdrulQqHANqwzuAN36UKbAPD5+Um5XI5tXEdQG3foRKsAgP8O0+k0O4BKUBO1daNdAHh/
+ f6dUKsUOIhPUQk0TGBEAXl9f6erqih3onKAGapnCmAAwnU6P3+O5wU4JzqKGSYwKAJPJ5KzfCP4JzuCs
+ aYwLAM/Pz+T3+9lBuWAvztjAigDQarXo4uKCHfjvYA/22sKaANBoNH6UgM+wxyZWBQA80EwkEv8MH4/H
+ lR9uyGBdAMDDzMFgQI+Pj8dflPZ6veNX69/gVwT8TzgBYvUsToBYPYsTIFbP4gSI1aMQfQNT7JwDjVti
+ aQAAAABJRU5ErkJggg==
+
+
+
+ 47
+
+
\ No newline at end of file
diff --git a/ContainerShip/ContainerShip/Program.cs b/ContainerShip/ContainerShip/Program.cs
index 6a9b875..3274551 100644
--- a/ContainerShip/ContainerShip/Program.cs
+++ b/ContainerShip/ContainerShip/Program.cs
@@ -11,7 +11,7 @@ namespace ContainerShip
// 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 FormShip());
}
}
}
\ No newline at end of file
diff --git a/ContainerShip/ContainerShip/Properties/Resources.Designer.cs b/ContainerShip/ContainerShip/Properties/Resources.Designer.cs
new file mode 100644
index 0000000..4a4632b
--- /dev/null
+++ b/ContainerShip/ContainerShip/Properties/Resources.Designer.cs
@@ -0,0 +1,73 @@
+//------------------------------------------------------------------------------
+//
+// Этот код создан программой.
+// Исполняемая версия:4.0.30319.42000
+//
+// Изменения в этом файле могут привести к неправильной работе и будут потеряны в случае
+// повторной генерации кода.
+//
+//------------------------------------------------------------------------------
+
+namespace ContainerShip.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("ContainerShip.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 RightArrow {
+ get {
+ object obj = ResourceManager.GetObject("RightArrow", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
+ }
+ }
+ }
+}
diff --git a/ContainerShip/ContainerShip/Form1.resx b/ContainerShip/ContainerShip/Properties/Resources.resx
similarity index 93%
rename from ContainerShip/ContainerShip/Form1.resx
rename to ContainerShip/ContainerShip/Properties/Resources.resx
index 1af7de1..7a46e95 100644
--- a/ContainerShip/ContainerShip/Form1.resx
+++ b/ContainerShip/ContainerShip/Properties/Resources.resx
@@ -117,4 +117,8 @@
System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ ..\Resources\RightArrow.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
\ No newline at end of file
diff --git a/ContainerShip/ContainerShip/Resources/RightArrow.png b/ContainerShip/ContainerShip/Resources/RightArrow.png
new file mode 100644
index 0000000000000000000000000000000000000000..8005fe2603eab1227255e10f2972543dafa3e056
GIT binary patch
literal 847
zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=jKx9jP7LeL$-D$|SkfJR9T^xl
z_H+M9WCij$3p^r=85qP=L734qNaX`ikS)pE-G$*l2rk&Wd@=(A(G+x3jIY
zwH!qn`rTBL6zvYUE9|{>WBt@7jxsL?kL>xEl
z2{IWJcMCMkjNTz$@bTe?s=aM_+qo~l6xkD}uOh@*u={SsHHHAj>5GC^3iKa$X8q5*
z`>x--`SVZy{%!ql>b@A41ILfES5{U1TK>>pdH(syck|lAU$j4CGMmj?SyK~|`{n$K
zt63FO>oT++ynWl7VkCL>*eX}6xyQ7>IvX>tU%%dElFHS#ciq2#SMQ0kHxV?Lf8J9?
zC@}ZQ!h)SKKjgnWzJB*Xg-u(C7VG4bEd3jbi;I~zM(}(;cRXvWlY&4)g$-Y;6XTP4
z?B@*@WLQi-nBefF>HqG{Rcvp|qSuOD`(TmI{o-rYDdja`oO=(yESYpMqs7$rOeE8*
zuU3T?GOJppRf~4YT>ECA&aE;1^pUj9E5)*wEHKa5eK%?C_u@$n)2E9kZHx%vHc8T%
z?!D$`-3-={)mK+%+4SDbY1?|Ae=JQ@A4J1ybZH~Boc#djA(wB!D{=91fy8R}ThT9y0!rgb5+{{Vh
z?N6SiX}JGB|0EU7;3T{G{Ged?p?cj$^VAo)f}Y*GtzUfqeM;7XHIgCkWxE=aM#;g=
z7c(5xCLdHj&e?u=$5Q1VDjCN#y^~8Ox#pXQJ0wQR)K*j&Jb(0}{KY4Wx6}5S&(Z4_
z?{-a{c9J9J54X_jt6Wxd`A*ojezJ6QpQgU{PK?CIX3jHrlvomQq%7{|Obm96TG!na
UC3U(k0@FK#r>mdKI;Vst0CgX1>i_@%
literal 0
HcmV?d00001
From 4a3fdebbdf55fc53b6ff3893f6ed984b97a97ef7 Mon Sep 17 00:00:00 2001
From: ksenianeva <95441235+ksenianeva@users.noreply.github.com>
Date: Mon, 3 Oct 2022 21:50:34 +0400
Subject: [PATCH 2/3] =?UTF-8?q?=D0=9F=D0=B5=D1=80=D0=B2=D0=B0=D1=8F=20?=
=?UTF-8?q?=D0=BB=D0=B0=D0=B1=D0=BE=D1=80=D0=B0=D1=82=D0=BE=D1=80=D0=BD?=
=?UTF-8?q?=D0=B0=D1=8F=20=D1=80=D0=B0=D0=B1=D0=BE=D1=82=D0=B0.=20=D0=98?=
=?UTF-8?q?=D1=81=D0=BF=D1=80=D0=B0=D0=B2=D0=BB=D0=B5=D0=BD=D0=B0=20=D0=BF?=
=?UTF-8?q?=D1=80=D0=BE=D0=B2=D0=B5=D1=80=D0=BA=D0=B0=20SetPosition,=20?=
=?UTF-8?q?=D0=BD=D0=B0=D0=B7=D0=B2=D0=B0=D0=BD=D0=B8=D0=B5=20=D0=BA=D0=BB?=
=?UTF-8?q?=D0=B0=D1=81=D1=81=D0=B0.?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
ContainerShip/ContainerShip/DrawingShip.cs | 10 +++++-----
.../{EntityContainerShip.cs => EntityShip.cs} | 2 +-
2 files changed, 6 insertions(+), 6 deletions(-)
rename ContainerShip/ContainerShip/{EntityContainerShip.cs => EntityShip.cs} (97%)
diff --git a/ContainerShip/ContainerShip/DrawingShip.cs b/ContainerShip/ContainerShip/DrawingShip.cs
index 806a413..00b6e4c 100644
--- a/ContainerShip/ContainerShip/DrawingShip.cs
+++ b/ContainerShip/ContainerShip/DrawingShip.cs
@@ -3,13 +3,13 @@ using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
-using static ContainerShip.EntityContainerShip;
+using static ContainerShip.EntityShip;
namespace ContainerShip
{
internal class DrawingShip
{
- public EntityContainerShip Ship { private set; get; }
+ public EntityShip Ship { private set; get; }
private float _startPosX;
private float _startPosY;
private int? _pictureWidth = null;
@@ -35,7 +35,7 @@ namespace ContainerShip
/// Цвет кузова
public void Init(int speed, float weight, Color bodyColor)
{
- Ship = new EntityContainerShip();
+ Ship = new EntityShip();
Ship.Init(speed, weight, bodyColor);
}
@@ -47,11 +47,11 @@ namespace ContainerShip
{
// Проверки
Random rn = new Random();
- if (x < 0 || x > width)
+ if (x < 0 || x + _shipWidth> width)
{
x = rn.Next(0, width - _shipWidth);
}
- if (y < 0 || y > height)
+ if (y < 0 || y + _shipHeight > height)
{
y = rn.Next(0, height - _shipHeight);
}
diff --git a/ContainerShip/ContainerShip/EntityContainerShip.cs b/ContainerShip/ContainerShip/EntityShip.cs
similarity index 97%
rename from ContainerShip/ContainerShip/EntityContainerShip.cs
rename to ContainerShip/ContainerShip/EntityShip.cs
index a5dbc3f..15ca4a1 100644
--- a/ContainerShip/ContainerShip/EntityContainerShip.cs
+++ b/ContainerShip/ContainerShip/EntityShip.cs
@@ -6,7 +6,7 @@ using System.Threading.Tasks;
namespace ContainerShip
{
- internal class EntityContainerShip
+ internal class EntityShip
{
///
/// Скорость
From fc7866c869968911baabe21b370dc6a7325f8dd4 Mon Sep 17 00:00:00 2001
From: ksenianeva <95441235+ksenianeva@users.noreply.github.com>
Date: Mon, 3 Oct 2022 21:56:53 +0400
Subject: [PATCH 3/3] =?UTF-8?q?=D0=9F=D0=B5=D1=80=D0=B2=D0=B0=D1=8F=20?=
=?UTF-8?q?=D0=BB=D0=B0=D0=B1=D0=BE=D1=80=D0=B0=D1=82=D0=BE=D1=80=D0=BD?=
=?UTF-8?q?=D0=B0=D1=8F=20=D1=80=D0=B0=D0=B1=D0=BE=D1=82=D0=B0.=20=D0=94?=
=?UTF-8?q?=D0=BE=D0=B1=D0=B0=D0=B2=D0=BB=D0=B5=D0=BD=D1=8B=20=D0=BD=D0=B5?=
=?UTF-8?q?=D0=B4=D0=BE=D1=81=D1=82=D0=B0=D1=8E=D1=89=D0=B8=D0=B5=20=D1=80?=
=?UTF-8?q?=D0=B5=D1=81=D1=83=D1=80=D1=81=D1=8B.?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.../ContainerShip/FormShip.Designer.cs | 7 +--
ContainerShip/ContainerShip/FormShip.resx | 54 ------------------
.../Properties/Resources.Designer.cs | 30 ++++++++++
.../ContainerShip/Properties/Resources.resx | 9 +++
.../ContainerShip/Resources/DownArrow.png | Bin 0 -> 864 bytes
.../ContainerShip/Resources/LeftArrow.png | Bin 0 -> 836 bytes
.../ContainerShip/Resources/upArrow.png | Bin 0 -> 856 bytes
7 files changed, 42 insertions(+), 58 deletions(-)
create mode 100644 ContainerShip/ContainerShip/Resources/DownArrow.png
create mode 100644 ContainerShip/ContainerShip/Resources/LeftArrow.png
create mode 100644 ContainerShip/ContainerShip/Resources/upArrow.png
diff --git a/ContainerShip/ContainerShip/FormShip.Designer.cs b/ContainerShip/ContainerShip/FormShip.Designer.cs
index 618edd4..de9ee47 100644
--- a/ContainerShip/ContainerShip/FormShip.Designer.cs
+++ b/ContainerShip/ContainerShip/FormShip.Designer.cs
@@ -28,7 +28,6 @@
///
private void InitializeComponent()
{
- System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FormShip));
this.statusStrip1 = new System.Windows.Forms.StatusStrip();
this.toolStripStatusLabelSpeed = new System.Windows.Forms.ToolStripStatusLabel();
this.toolStripStatusLabelWeight = new System.Windows.Forms.ToolStripStatusLabel();
@@ -77,7 +76,7 @@
// buttonRight
//
this.buttonRight.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
- this.buttonRight.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("buttonRight.BackgroundImage")));
+ this.buttonRight.BackgroundImage = global::ContainerShip.Properties.Resources.LeftArrow;
this.buttonRight.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
this.buttonRight.Location = new System.Drawing.Point(738, 353);
this.buttonRight.Name = "buttonRight";
@@ -89,7 +88,7 @@
// buttonUp
//
this.buttonUp.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
- this.buttonUp.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("buttonUp.BackgroundImage")));
+ this.buttonUp.BackgroundImage = global::ContainerShip.Properties.Resources.upArrow;
this.buttonUp.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
this.buttonUp.Location = new System.Drawing.Point(682, 306);
this.buttonUp.Name = "buttonUp";
@@ -101,7 +100,7 @@
// buttonDown
//
this.buttonDown.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
- this.buttonDown.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("buttonDown.BackgroundImage")));
+ this.buttonDown.BackgroundImage = global::ContainerShip.Properties.Resources.DownArrow;
this.buttonDown.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
this.buttonDown.Location = new System.Drawing.Point(682, 352);
this.buttonDown.Name = "buttonDown";
diff --git a/ContainerShip/ContainerShip/FormShip.resx b/ContainerShip/ContainerShip/FormShip.resx
index 0dc3800..e6c122e 100644
--- a/ContainerShip/ContainerShip/FormShip.resx
+++ b/ContainerShip/ContainerShip/FormShip.resx
@@ -60,60 +60,6 @@
17, 17
-
-
-
- iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAYAAACqaXHeAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAW
- JQAAFiUBSVIk8AAAAnlJREFUeF7tmr2uaUEUx8kRIQqhQqFQakXlAUjQEInEQygVHkCotDqJDpX4KGg8
- gUZUOhKF0PkO62adrHNzrzt32w777n1n5pf8swq2mfVL2LNnmEBwpACqwiIFUBUWKYCqsEgBVIVFCqAq
- LFIAVWGRAqgKi6EEbDYbaDabUKvVoNfrwX6/p1e0wxACjscjFAoFsFqtYDKZfsblckGj0aB3aYPuAq7X
- K2Qymd8av08+n4fb7UZXvBfdBbRaLWbT98nlcnA+n+mq96G7gGg0ymyYlXg8Drvdjq58D7oL8Pv9zGb/
- lkgkAtvtlq5+Hd0FOJ1OZqNKCQaDsFwu6RNe4ykB6/UaSqUSJBIJCIfDEAqFXs7HxwezyUcJBAIwn89p
- Zt9HtYDhcPh5W2JNRq94PB6YTCY0w++hSsB0OgWHw8GchN7Br9B4PKaZPo8qAalUijm4UWK326HT6dBs
- n+OhgMvlAjabjTmwkWKxWKBer9Os1fNQwGq1Yg5oxJjNZqhWqzRzdTwUsFgsmIMZNSgBH6jUwp0AjNfr
- hcPhQB0ow6UATLfbpQ6U4VZAuVymDpThVkClUqEOlOFWQL/fpw6U4VKAz+f73GVSA3cC8DaImyxqeShA
- +IUQLoVxrc0a0EjRbCmMpNNp5qBGiaYPQ8hsNhP7cRgZjUbgdruZk9Ar/2xD5As8ucEVVjKZFG9LTCv+
- q01RLRB+WzwWizEbZYXLg5F2u81s9j7cHo3h4Wg2m2U2/RWuD0eR0+kExWLxj+NxvO1yfzz+K/jjhl8J
- /IPEYDBQva31CoYSoAdSAFVhkQKoCosUQFVYpACqwiIFUBUWKYCqsEgBVAUF4Ad9YZwDE2SIxgAAAABJ
- RU5ErkJggg==
-
-
-
-
- iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAYAAACqaXHeAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAW
- JQAAFiUBSVIk8AAAArJJREFUeF7tmr2uqUEUhgkRohCqTaFQakXlAkjQEInERSgVLkDsSquT6FCJn4LG
- FWhEpSNRCJ3/sE6WjOLkrMg+83dO8s2TvJnCzJq1nmQn2/exgcUxAthqWYwAtloWI4CtlsUIYKtl+ScC
- zuczDAYDqNfr8P39DaPRCC6XC/tUL9oFdDodCAaDYLPZfksoFIJut8t26UOrgEajAXa7/Y/h38HPcI9O
- tAlotVofh38H9+BeXWgR0O/3wel0kgNTwb14RgfKBcxmM/B4POSgn4Jn8KxqlAqYz+fg8/nIAX8SPIs1
- VKJMwGq1gq+vL3KwvwnWwFqqUCJgs9lAJBIhB+IJ1sKaKpAu4HA4QDQaJQcRCdbE2rKRKuB4PEIikSAH
- kBGsjXfIRJqA2+0G6XSabFxm8A68SxZSBDyfTyiVSmTDKoJ34Z0ykCKgXC6TjaoM3ikDYQHtdptsUEfw
- blGEBJxOJ/D7/WRzOhIIBF5frUUQEjAcDsnGdGY8HrNu+BAS0Gw2yaZ0BnsQQUgAPtygmtKZXq/HuuFD
- SMB+vweXy0U2piN4t+h/h0ICkEqlQjanI9VqlXXBj7AAfJhZKBTIBlWmWCzC9XplXfAjLAB5PB6vB5rJ
- ZBLC4fDre7zD4SAb5wnWwppYO5VKvf7u8U4ZSBFAEYvFyGF4grVUYQSwVTpGgBFgBJDD8MQIMAKMAFZV
- PkYAW6VjBBgBRgA5DE+MACPACGBV5aNMQDweJ4fhCdZShTIBmUyGHIYn2WyWVZWPMgG1Wo0chif4i1JV
- KBOw2+2kvDfE93/4/kEVygQgk8kEvF4vOdhPgmen0ymrpgalApDFYgG5XA7cbjc5JBX8jWA+n4flcsmq
- qEO5gDf3+x222y2s1+uPwT24VxfaBPyvGAFstSxGAFstixHAVsticQEAvwDQzJwDPf7RTAAAAABJRU5E
- rkJggg==
-
-
-
-
- iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAYAAACqaXHeAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAW
- JQAAFiUBSVIk8AAAArtJREFUeF7tmrtqakEUhg0RUSxEq2hhYWkrVj5ABLVJEIQ8hGWKPICYytZOSKdW
- wUuhjU9gI6nSJWARtIsaRVf4ZQ4cOIugc8uBPR/8TOHMmrU+CMS99ZHHcQLE6lmcALF6FidArJ7FCRCr
- cXa7Hc3nc3p7e/sx2IO9tjAu4OXlhW5vbykUCpHP5zspwWCQbm5uaDabiSrmMCpgPB5TOBxmhzwlODsa
- jUQ1MxgTsFgsKBaLsYOdk2g0Sh8fH6KqfowJqNfr7EAyqdVqoqp+jAkolUrsMDIpFouiqn6MCchms+ww
- MkEtUxgTkMlk2GFkglqmcALEqh0nwAlwAthhZOIEOAFOgKiqHydArNpxApwAJ4AdRiZOgBPgBIiq+tEi
- YL/fU7fbpXw+T8lkkiKRCF1eXrLDyAS1UBO1r6+vqdPpHO/UgbKAr68vqlQqbOMmUy6XabPZiC7kURbw
- 8PDANmgj9/f3ogt5lAQsl0sKBAJsczaCu/H+QQUlAfi75xqzmXa7LbqRQ0lAs9lkm7IZ9KCCkoDhcMg2
- ZTP9fl90I4eSgPV6reX9n2zw3nC1Wolu5FASAJ6entjmbAR3q6IsAFSrVbZBk8GdOtAi4HA40N3dHduo
- ieAu3KkDLQLAdrulQqHANqwzuAN36UKbAPD5+Um5XI5tXEdQG3foRKsAgP8O0+k0O4BKUBO1daNdAHh/
- f6dUKsUOIhPUQk0TGBEAXl9f6erqih3onKAGapnCmAAwnU6P3+O5wU4JzqKGSYwKAJPJ5KzfCP4JzuCs
- aYwLAM/Pz+T3+9lBuWAvztjAigDQarXo4uKCHfjvYA/22sKaANBoNH6UgM+wxyZWBQA80EwkEv8MH4/H
- lR9uyGBdAMDDzMFgQI+Pj8dflPZ6veNX69/gVwT8TzgBYvUsToBYPYsTIFbP4gSI1aMQfQNT7JwDjVti
- aQAAAABJRU5ErkJggg==
-
-
47
diff --git a/ContainerShip/ContainerShip/Properties/Resources.Designer.cs b/ContainerShip/ContainerShip/Properties/Resources.Designer.cs
index 4a4632b..102ec22 100644
--- a/ContainerShip/ContainerShip/Properties/Resources.Designer.cs
+++ b/ContainerShip/ContainerShip/Properties/Resources.Designer.cs
@@ -60,6 +60,26 @@ namespace ContainerShip.Properties {
}
}
+ ///
+ /// Поиск локализованного ресурса типа System.Drawing.Bitmap.
+ ///
+ internal static System.Drawing.Bitmap DownArrow {
+ get {
+ object obj = ResourceManager.GetObject("DownArrow", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
+ }
+ }
+
+ ///
+ /// Поиск локализованного ресурса типа System.Drawing.Bitmap.
+ ///
+ internal static System.Drawing.Bitmap LeftArrow {
+ get {
+ object obj = ResourceManager.GetObject("LeftArrow", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
+ }
+ }
+
///
/// Поиск локализованного ресурса типа System.Drawing.Bitmap.
///
@@ -69,5 +89,15 @@ namespace ContainerShip.Properties {
return ((System.Drawing.Bitmap)(obj));
}
}
+
+ ///
+ /// Поиск локализованного ресурса типа System.Drawing.Bitmap.
+ ///
+ internal static System.Drawing.Bitmap upArrow {
+ get {
+ object obj = ResourceManager.GetObject("upArrow", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
+ }
+ }
}
}
diff --git a/ContainerShip/ContainerShip/Properties/Resources.resx b/ContainerShip/ContainerShip/Properties/Resources.resx
index 7a46e95..d813111 100644
--- a/ContainerShip/ContainerShip/Properties/Resources.resx
+++ b/ContainerShip/ContainerShip/Properties/Resources.resx
@@ -121,4 +121,13 @@
..\Resources\RightArrow.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+ ..\Resources\DownArrow.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ ..\Resources\LeftArrow.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ ..\Resources\upArrow.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
\ No newline at end of file
diff --git a/ContainerShip/ContainerShip/Resources/DownArrow.png b/ContainerShip/ContainerShip/Resources/DownArrow.png
new file mode 100644
index 0000000000000000000000000000000000000000..566b79c1248b5c0d912af272df803eb8f8ff9229
GIT binary patch
literal 864
zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=jKx9jP7LeL$-D$|SkfJR9T^xl
z_H+M9WCij$3p^r=85qP=L734qNaX`ikS)pE-G$*l2rk&Wd@=(A(_>E;$B>G+x3jIY
zwH!qnj<04p>NG_pu&H(FKNjz9jxtWC1M-QP59fDW6T6m``kJ{V;&w;qDF+_6;GZtG
z*Ei4Mo?hL)z?#2%CO=<#So--hHK$&^TgC2Y(EQW&X2cqXQ^%561I)y<8#Zms_${~L
z{`;HPuTP&`f9Uz=jkj+{t7kK^u1GPOdEoM8VHPGvk=n2yf9oo0YFa*4_=H|r7~-(~
zc58yciP$HWjlavRWLGU?OJ#cY+0sQx@ZBN3&H@Xb%{O~iopQhFxFKxy#-mA&(eHl#
z`&X8=(rISH_3PnToyIbJD^=xFnU-DF+S={?G|AV(*RAvM`Bu3<{|qV~g#QESCgHb-_Ge=NY&df@ffBK@LWoNHQ5H-0;O
znAv2uZ@P~p2ltJ)pG)w`JBHy_3qK{1cVIcpI=#O`yp1N
zX+p#0z?o6kAOHI|FG{blk3}zX{q>-C|9A54$=?yRHpA?lKovVM;KEjhWO&)}
z#CWTSvr}MEgicYs;?&0EQx07Xk3Vv>IyG7ciZ&)coMALUiNUf~#ZhniW50;B2ND+3
zbe3>BOgpW*~^frn!@dH>#f<38oPH+m5sH9^0FC%4Od>5eyFgy!}?$L2K(<_Syvw}%$?=)LfEj?n)78&qol`;+0LFEHVgLXD
literal 0
HcmV?d00001
diff --git a/ContainerShip/ContainerShip/Resources/LeftArrow.png b/ContainerShip/ContainerShip/Resources/LeftArrow.png
new file mode 100644
index 0000000000000000000000000000000000000000..f2b8e1a2dd4ba7a78928c045fe7682d4f0f1b420
GIT binary patch
literal 836
zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=jKx9jP7LeL$-D$|SkfJR9T^xl
z_H+M9WCij$3p^r=85qP=L734qNaX`ikS)pE-G$*l2rk&Wd@=(A({WE1$B>G+x3jI^
zYdT6CJKnj&MR9decavWYGp|%@pNEQFOVC5_3)(7HAzs^EoO~Pg9h#0T720l)?tZU$
z(&IDpOK-kOORqaQxxDQ9jG4#ZynA!zQlj7ygZ&Cd+~y2Qn+uq+GCs4dcvV=j`R0PM
z-M!mx>lW?4t0BXuy!j@Nduo%!0+aT`jOm*ra||R-^nVO*Qg~3blV|=U_M^NzV)QI#
z`uw~6p*qz_vSx3b;_>ppI}KS|y>h?oz4X$=Zm!>i*VP(%4kl7d&1Ni%&}l2*E&JpT
zUzhZQj}F`j98TX;A|10fY(<35qPqS4
z(@v`j>H8Essck!~D5T%AK~;AB^=_$NwogB6Haz#uGxJz*Gv{8Ow@P#qw}hBQTaKVQlC`RAOd1yV~dzbvqu-#*Lx@k++aFQ-J!h;sE=5uz3F`+3GW
z2Br4Hjo*LUZh2rhYYxAF|Lxn!TSZK)6^-Qj6~9WHl~Rb~Rshig94tWESL#8DRiKJc
z1$$#!AzeU
zbuwyOqI7dM-&`>@!0Y}Dfyzv;o;7zSXl{&K-!9h88XcTewD8N46^|Y>Tx9U@RF>em
zSGC~u(f0)H3
o?ID{(idY^4Hb&wdhL$?!Gf$%xv(GJJ0VZ+=Pgg&ebxsLQ0M*53*#H0l
literal 0
HcmV?d00001
diff --git a/ContainerShip/ContainerShip/Resources/upArrow.png b/ContainerShip/ContainerShip/Resources/upArrow.png
new file mode 100644
index 0000000000000000000000000000000000000000..6d3c97d95fc4d6cb7b63a907a2f3562fd65e0704
GIT binary patch
literal 856
zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=jKx9jP7LeL$-D$|SkfJR9T^xl
z_H+M9WCij$3p^r=85qP=L734qNaX`ikS)pE-G$*l2rk&Wd@=(A(``=|$B>G+x3l+V
zX*r4wPF>sei^VJ}RaLAhK6DZ1
z#humDCO^8zGimqdiAm4c>(8w@H)rPO@|&^cSKVbhj>RNi5ld!p%Qa+6fG{rJYlz<|
zU?tbT^BPq3>;L?rcI8T#=7kP(i9`l=(S?sg4%?VgY^N2NcHr~p&qp8aXQ^GVUTccPg_k863IYjYXN11A8fs0*JCI?r
z$lTogjFUd+u>%n|Jxmj9V!Z*(aq;mhb8nwva^WaCETbftcHsDN
zcHQZx&$M=noM9~Pbn0My{(0uL*QL*zQaPSAS-L75X=ra}f990R^-P3uJEOk7{u$O)
z0%y*0PiM@}&o>e3G!S3zbTMO!93Oj3ulbI=4jwk
zIk(mIA5Ci1%`cFA@aEr*U$#jbCARH3SnADF=6HHjM{(S-@GC+*Y$vm}KKiAw;~T?s
z1s6Gad7vr&{{DZe7glRLc~D_
zcXjHHD@w(GySJSASRoVrM@5J;r_+5FdKF6_dRkml;*jKVKOg`BXrX?!H)jGp<6U%N@pNPi8%dZ@HypiRijyw9hmSLJYD@<
J);T3K0RX&rZNmTn
literal 0
HcmV?d00001