diff --git a/ProjectHoistingCrane/ProjectHoistingCrane/DirectionType.cs b/ProjectHoistingCrane/ProjectHoistingCrane/DirectionType.cs
new file mode 100644
index 0000000..f3ef53c
--- /dev/null
+++ b/ProjectHoistingCrane/ProjectHoistingCrane/DirectionType.cs
@@ -0,0 +1,30 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace ProjectHoistingCrane;
+
+///
+/// Направление перемещения
+///
+public enum DirectionType
+{
+ ///
+ /// Вверх
+ ///
+ Up = 1,
+ ///
+ /// Вниз
+ ///
+ Down = 2,
+ ///
+ /// Влево
+ ///
+ Left = 3,
+ ///
+ /// Вправо
+ ///
+ Right = 4
+}
diff --git a/ProjectHoistingCrane/ProjectHoistingCrane/DrawingHoistingCrane.cs b/ProjectHoistingCrane/ProjectHoistingCrane/DrawingHoistingCrane.cs
new file mode 100644
index 0000000..0f71b92
--- /dev/null
+++ b/ProjectHoistingCrane/ProjectHoistingCrane/DrawingHoistingCrane.cs
@@ -0,0 +1,249 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace ProjectHoistingCrane;
+
+public class DrawningHoistingCrane
+{
+ ///
+ /// Класс-сущность
+ ///
+ public EntityHoistingCrane? EntityHoistingCrane { get; private set; }
+ ///
+ /// Ширина окна
+ ///
+ private int? _pictureWidth;
+ ///
+ /// Высота окна
+ ///
+ private int? _pictureHeight;
+ ///
+ /// Левая координата прорисовки автомобиля
+ ///
+ private int? _startPosX;
+ ///
+ /// Верхняя кооридната прорисовки автомобиля
+ ///
+ private int? _startPosY;
+ ///
+ /// Ширина прорисовки автомобиля
+ ///
+ private readonly int _drawningCraneWidth = 110;
+ ///
+ /// Высота прорисовки автомобиля
+ ///
+ private readonly int _drawningCraneHeight = 56;
+ ///
+ /// Инициализация свойств
+ ///
+ /// Скорость
+ /// Вес
+ /// Основной цвет
+ /// Дополнительный цвет
+ /// Признак наличия противовеса
+ /// Признак наличия крана
+ public void Init(int speed, double weight, Color bodyColor, Color additionalColor, bool counterweight, bool crane)
+ {
+ EntityHoistingCrane = new EntityHoistingCrane();
+ EntityHoistingCrane.Init(speed, weight, bodyColor, additionalColor,
+ counterweight, crane);
+ _pictureWidth = null;
+ _pictureHeight = null;
+ _startPosX = null;
+ _startPosY = null;
+ }
+ ///
+ /// Установка границ поля
+ ///
+ /// Ширина поля
+ /// Высота поля
+ /// true - границы заданы, false - проверка не пройдена, нельзя разместить объект в этих размерах
+ public bool SetPictureSize(int width, int height)
+ {
+ // TODO проверка, что объект "влезает" в размеры поля
+ // если влезает, сохраняем границы и корректируем позицию объекта, если она была уже установлена
+
+ if (width <= _drawningCraneWidth || height <= _drawningCraneHeight)
+ {
+ return false;
+ }
+
+ _pictureWidth = width;
+ _pictureHeight = height;
+
+ if (_startPosX != null || _startPosY != null)
+ {
+ if (_startPosX + _drawningCraneWidth > _pictureWidth) _startPosX = _pictureWidth - _drawningCraneWidth;
+ if (_startPosY + _drawningCraneHeight > _pictureHeight) _startPosY = _pictureHeight - _drawningCraneHeight;
+ if (_startPosX < 0) _startPosX = 0;
+ if (_startPosY < 0) _startPosY = 0;
+ }
+
+ return true;
+ }
+
+ ///
+ /// Установка позиции
+ ///
+ /// Координата X
+ /// Координата Y
+ public void SetPosition(int x, int y)
+ {
+ if (!_pictureHeight.HasValue || !_pictureWidth.HasValue)
+ {
+ return;
+ }
+
+ // TODO если при установке объекта в эти координаты, он будет "выходить" за границы формы
+ // то надо изменить координаты, чтобы он оставался в этих границах
+
+ _startPosX = x;
+ _startPosY = y;
+ if (_startPosX + _drawningCraneWidth > _pictureWidth) _startPosX = _pictureWidth - _drawningCraneWidth;
+ if (_startPosY + _drawningCraneHeight > _pictureHeight) _startPosY = _pictureHeight - _drawningCraneHeight;
+ if (_startPosX < 0) _startPosX = 0;
+ if (_startPosY < 0) _startPosY = 0;
+ }
+
+ ///
+ /// Изменение направления перемещения
+ ///
+ /// Направление
+ /// true - перемещене выполнено, false - перемещение невозможно
+ public bool MoveTransport(DirectionType direction)
+ {
+ if (EntityHoistingCrane == null || !_startPosX.HasValue ||
+ !_startPosY.HasValue)
+ {
+ return false;
+ }
+ switch (direction)
+ {
+ //влево
+ case DirectionType.Left:
+ if (_startPosX.Value - EntityHoistingCrane.Step > 0)
+ {
+ _startPosX -= (int)EntityHoistingCrane.Step;
+ }
+ return true;
+ //вверх
+ case DirectionType.Up:
+ if (_startPosY.Value - EntityHoistingCrane.Step > 0)
+ {
+ _startPosY -= (int)EntityHoistingCrane.Step;
+ }
+ return true;
+ // вправо
+ case DirectionType.Right:
+ if (_startPosX.Value + EntityHoistingCrane.Step < _pictureWidth - _drawningCraneWidth)
+ {
+ _startPosX += (int)EntityHoistingCrane.Step;
+ }
+ //TODO прописать логику сдвига в право
+ return true;
+ //вниз
+ case DirectionType.Down:
+ if (_startPosY.Value + EntityHoistingCrane.Step < _pictureHeight - _drawningCraneHeight)
+ {
+ _startPosY += (int)EntityHoistingCrane.Step;
+ }
+ //TODO прописать логику сдвига в вниз
+ return true;
+ default:
+ return false;
+ }
+ }
+
+ ///
+ /// Прорисовка объекта
+ ///
+ ///
+ public void DrawTransport(Graphics g)
+ {
+ if (EntityHoistingCrane == null || !_startPosX.HasValue || !_startPosY.HasValue)
+ {
+ return;
+ }
+ Pen pen = new(Color.Black);
+ Brush additionalBrush = new SolidBrush(EntityHoistingCrane.AdditionalColor);
+ Brush BodyBrush = new SolidBrush(EntityHoistingCrane.BodyColor);
+ Brush CraneBrush = new SolidBrush(Color.Black);
+
+
+ //корпус
+ g.FillRectangle(BodyBrush, _startPosX.Value + 10, _startPosY.Value + 30, 62, 12);
+ g.DrawRectangle(pen, _startPosX.Value + 10, _startPosY.Value + 30, 62, 12);
+ g.FillRectangle(BodyBrush, _startPosX.Value + 22, _startPosY.Value + 16, 4, 15);
+ g.DrawRectangle(pen, _startPosX.Value + 22, _startPosY.Value + 16, 4, 14);
+ g.FillRectangle(BodyBrush, _startPosX.Value + 37, _startPosY.Value + 8, 5, 23);
+ g.DrawRectangle(pen, _startPosX.Value + 37, _startPosY.Value + 8, 5, 22);
+
+ //стекло
+ g.FillRectangle(additionalBrush, _startPosX.Value + 52, _startPosY.Value + 14, 21, 16);
+ g.DrawRectangle(pen, _startPosX.Value + 52, _startPosY.Value + 14, 20, 16);
+
+ //гусеницы
+ g.DrawLine(pen, _startPosX.Value + 8, _startPosY.Value + 42, _startPosX.Value + 10, _startPosY.Value + 42);
+ g.DrawLine(pen, _startPosX.Value + 7, _startPosY.Value + 43, _startPosX.Value + 7, _startPosY.Value + 53);
+ g.DrawLine(pen, _startPosX.Value + 8, _startPosY.Value + 54, _startPosX.Value + 12, _startPosY.Value + 54);
+ g.DrawLine(pen, _startPosX.Value + 13, _startPosY.Value + 55, _startPosX.Value + 69, _startPosY.Value + 55);
+ g.DrawLine(pen, _startPosX.Value + 70, _startPosY.Value + 54, _startPosX.Value + 73, _startPosY.Value + 54);
+ g.DrawLine(pen, _startPosX.Value + 74, _startPosY.Value + 53, _startPosX.Value + 74, _startPosY.Value + 43);
+ g.DrawLine(pen, _startPosX.Value + 71, _startPosY.Value + 42, _startPosX.Value + 73, _startPosY.Value + 42);
+
+ //колеса
+ g.FillEllipse(BodyBrush, _startPosX.Value + 10, _startPosY.Value + 44, 9, 9);
+ g.DrawEllipse(pen, _startPosX.Value + 10, _startPosY.Value + 44, 9, 9);
+ g.FillEllipse(BodyBrush, _startPosX.Value + 63, _startPosY.Value + 44, 9, 9);
+ g.DrawEllipse(pen, _startPosX.Value + 63, _startPosY.Value + 44, 9, 9);
+
+ g.FillEllipse(BodyBrush, _startPosX.Value + 25, _startPosY.Value + 48, 6, 6);
+ g.DrawEllipse(pen, _startPosX.Value + 25, _startPosY.Value + 48, 6, 6);
+ g.FillEllipse(BodyBrush, _startPosX.Value + 38, _startPosY.Value + 48, 6, 6);
+ g.DrawEllipse(pen, _startPosX.Value + 38, _startPosY.Value + 48, 6, 6);
+ g.FillEllipse(BodyBrush, _startPosX.Value + 50, _startPosY.Value + 48, 6, 6);
+ g.DrawEllipse(pen, _startPosX.Value + 50, _startPosY.Value + 48, 6, 6);
+
+ g.FillEllipse(BodyBrush, _startPosX.Value + 33, _startPosY.Value + 44, 4, 4);
+ g.DrawEllipse(pen, _startPosX.Value + 33, _startPosY.Value + 44, 4, 4);
+ g.FillEllipse(BodyBrush, _startPosX.Value + 45, _startPosY.Value + 44, 4, 4);
+ g.DrawEllipse(pen, _startPosX.Value + 45, _startPosY.Value + 44, 4, 4);
+
+ //кран
+ if (EntityHoistingCrane.Crane)
+ {
+ //балка
+ g.FillRectangle(BodyBrush, _startPosX.Value, _startPosY.Value, 110, 9);
+ g.DrawRectangle(pen, _startPosX.Value, _startPosY.Value, 109, 8);
+
+ //крюк
+ g.FillRectangle(CraneBrush , _startPosX.Value + 107, _startPosY.Value + 8, 3, 13);
+ g.FillRectangle(CraneBrush, _startPosX.Value + 102, _startPosY.Value + 18, 8, 3);
+ g.FillRectangle(CraneBrush, _startPosX.Value + 102, _startPosY.Value + 16, 3, 5);
+ }
+
+ //противовес
+ if (EntityHoistingCrane.Сounterweight)
+ {
+ g.FillRectangle(additionalBrush, _startPosX.Value + 35, _startPosY.Value, 10, 9);
+ g.DrawRectangle(pen, _startPosX.Value + 35, _startPosY.Value, 9, 8);
+
+ g.DrawLine(pen, _startPosX.Value + 35, _startPosY.Value + 2, _startPosX.Value + 44, _startPosY.Value + 2);
+ g.DrawLine(pen, _startPosX.Value + 35, _startPosY.Value + 4, _startPosX.Value + 44, _startPosY.Value + 4);
+ g.DrawLine(pen, _startPosX.Value + 35, _startPosY.Value + 6, _startPosX.Value + 44, _startPosY.Value + 6);
+ }
+ }
+}
+
+
+
+
+
+
+
+
+
+
diff --git a/ProjectHoistingCrane/ProjectHoistingCrane/EntityHoistingCrane.cs b/ProjectHoistingCrane/ProjectHoistingCrane/EntityHoistingCrane.cs
new file mode 100644
index 0000000..60d33be
--- /dev/null
+++ b/ProjectHoistingCrane/ProjectHoistingCrane/EntityHoistingCrane.cs
@@ -0,0 +1,57 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace ProjectHoistingCrane;
+
+public class EntityHoistingCrane
+{
+ ///
+ /// Скорость
+ ///
+ public int Speed { get; private set; }
+ ///
+ /// Вес
+ ///
+ public double Weight { get; private set; }
+ ///
+ /// Основной цвет
+ ///
+ public Color BodyColor { get; private set; }
+ ///
+ /// Дополнительный цвет (для опциональных элементов)
+ ///
+ public Color AdditionalColor { get; private set; }
+ ///
+ /// Признак (опция) наличия противовеса
+ ///
+ public bool Сounterweight { get; private set; }
+ ///
+ /// Признак (опция) наличия крана
+ ///
+ public bool Crane { get; private set; }
+ ///
+ /// Шаг перемещения автомобиля
+ ///
+ public double Step => Speed * 100 / Weight;
+ ///
+ /// Инициализация полей объекта-класса спортивного автомобиля
+ ///
+ /// Скорость
+ /// Вес автомобиля
+ /// Основной цвет
+ /// Дополнительный цвет
+ /// Признак наличия обвеса
+ /// Признак наличия крана
+ public void Init(int speed, double weight, Color bodyColor, Color additionalColor, bool counterweight, bool crane)
+ {
+ Speed = speed;
+ Weight = weight;
+ BodyColor = bodyColor;
+ AdditionalColor = additionalColor;
+ Сounterweight = counterweight;
+ Crane = crane;
+ }
+}
diff --git a/ProjectHoistingCrane/ProjectHoistingCrane/Form1.Designer.cs b/ProjectHoistingCrane/ProjectHoistingCrane/Form1.Designer.cs
index 0a9528c..f64d119 100644
--- a/ProjectHoistingCrane/ProjectHoistingCrane/Form1.Designer.cs
+++ b/ProjectHoistingCrane/ProjectHoistingCrane/Form1.Designer.cs
@@ -28,12 +28,126 @@
///
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";
+ pictureBox1 = new PictureBox();
+ pictureBoxHoistingCrane = new PictureBox();
+ buttonCreate = new Button();
+ buttonLeft = new Button();
+ buttonUp = new Button();
+ buttonRight = new Button();
+ buttonDown = new Button();
+ ((System.ComponentModel.ISupportInitialize)pictureBox1).BeginInit();
+ ((System.ComponentModel.ISupportInitialize)pictureBoxHoistingCrane).BeginInit();
+ SuspendLayout();
+ //
+ // pictureBox1
+ //
+ pictureBox1.Dock = DockStyle.Fill;
+ pictureBox1.Location = new Point(0, 0);
+ pictureBox1.Name = "pictureBox1";
+ pictureBox1.Size = new Size(682, 453);
+ pictureBox1.SizeMode = PictureBoxSizeMode.AutoSize;
+ pictureBox1.TabIndex = 0;
+ pictureBox1.TabStop = false;
+ //
+ // pictureBoxHoistingCrane
+ //
+ pictureBoxHoistingCrane.Dock = DockStyle.Fill;
+ pictureBoxHoistingCrane.Location = new Point(0, 0);
+ pictureBoxHoistingCrane.Name = "pictureBoxHoistingCrane";
+ pictureBoxHoistingCrane.Size = new Size(682, 453);
+ pictureBoxHoistingCrane.SizeMode = PictureBoxSizeMode.AutoSize;
+ pictureBoxHoistingCrane.TabIndex = 1;
+ pictureBoxHoistingCrane.TabStop = false;
+ //
+ // buttonCreate
+ //
+ buttonCreate.Anchor = AnchorStyles.Bottom | AnchorStyles.Left;
+ buttonCreate.Location = new Point(24, 402);
+ buttonCreate.Name = "buttonCreate";
+ buttonCreate.Size = new Size(94, 29);
+ buttonCreate.TabIndex = 2;
+ buttonCreate.Text = "Создать";
+ buttonCreate.UseVisualStyleBackColor = true;
+ buttonCreate.Click += buttonCreate_Click;
+ //
+ // buttonLeft
+ //
+ buttonLeft.Anchor = AnchorStyles.Bottom | AnchorStyles.Right;
+ buttonLeft.BackgroundImage = Properties.Resources.arrowLeft;
+ buttonLeft.BackgroundImageLayout = ImageLayout.Zoom;
+ buttonLeft.Location = new Point(550, 402);
+ buttonLeft.Name = "buttonLeft";
+ buttonLeft.Size = new Size(30, 30);
+ buttonLeft.TabIndex = 3;
+ buttonLeft.UseVisualStyleBackColor = true;
+ buttonLeft.Click += buttonMove_Click;
+ //
+ // buttonUp
+ //
+ buttonUp.Anchor = AnchorStyles.Bottom | AnchorStyles.Right;
+ buttonUp.BackgroundImage = Properties.Resources.arrowUp;
+ buttonUp.BackgroundImageLayout = ImageLayout.Zoom;
+ buttonUp.Location = new Point(586, 365);
+ buttonUp.Name = "buttonUp";
+ buttonUp.Size = new Size(30, 30);
+ buttonUp.TabIndex = 4;
+ buttonUp.UseVisualStyleBackColor = true;
+ buttonUp.Click += buttonMove_Click;
+ //
+ // buttonRight
+ //
+ buttonRight.Anchor = AnchorStyles.Bottom | AnchorStyles.Right;
+ buttonRight.BackgroundImage = Properties.Resources.arrowRight;
+ buttonRight.BackgroundImageLayout = ImageLayout.Zoom;
+ buttonRight.Location = new Point(622, 401);
+ buttonRight.Name = "buttonRight";
+ buttonRight.Size = new Size(30, 30);
+ buttonRight.TabIndex = 5;
+ buttonRight.UseVisualStyleBackColor = true;
+ buttonRight.Click += buttonMove_Click;
+ //
+ // buttonDown
+ //
+ buttonDown.Anchor = AnchorStyles.Bottom | AnchorStyles.Right;
+ buttonDown.BackgroundImage = Properties.Resources.arrowDown;
+ buttonDown.BackgroundImageLayout = ImageLayout.Zoom;
+ buttonDown.Location = new Point(586, 402);
+ buttonDown.Name = "buttonDown";
+ buttonDown.Size = new Size(30, 30);
+ buttonDown.TabIndex = 6;
+ buttonDown.UseVisualStyleBackColor = true;
+ buttonDown.Click += buttonMove_Click;
+ //
+ // Form1
+ //
+ AutoScaleDimensions = new SizeF(8F, 20F);
+ AutoScaleMode = AutoScaleMode.Font;
+ ClientSize = new Size(682, 453);
+ Controls.Add(buttonDown);
+ Controls.Add(buttonRight);
+ Controls.Add(buttonUp);
+ Controls.Add(buttonLeft);
+ Controls.Add(buttonCreate);
+ Controls.Add(pictureBoxHoistingCrane);
+ Controls.Add(pictureBox1);
+ Name = "Form1";
+ StartPosition = FormStartPosition.CenterScreen;
+ Text = "Form1";
+
+ ((System.ComponentModel.ISupportInitialize)pictureBox1).EndInit();
+ ((System.ComponentModel.ISupportInitialize)pictureBoxHoistingCrane).EndInit();
+ ResumeLayout(false);
+ PerformLayout();
}
#endregion
+
+ private PictureBox pictureBox1;
+ private PictureBox pictureBoxHoistingCrane;
+ private Button buttonCreate;
+ private Button buttonLeft;
+ private Button buttonUp;
+ private Button buttonRight;
+ private Button buttonDown;
}
}
diff --git a/ProjectHoistingCrane/ProjectHoistingCrane/Form1.cs b/ProjectHoistingCrane/ProjectHoistingCrane/Form1.cs
index cf5008d..3ca129a 100644
--- a/ProjectHoistingCrane/ProjectHoistingCrane/Form1.cs
+++ b/ProjectHoistingCrane/ProjectHoistingCrane/Form1.cs
@@ -2,9 +2,93 @@ namespace ProjectHoistingCrane
{
public partial class Form1 : Form
{
+ ///
+ /// -
+ ///
+ private DrawningHoistingCrane? _drawningHoistingCrane;
+ ///
+ ///
+ ///
public Form1()
{
InitializeComponent();
}
+
+
+ ///
+ ///
+ ///
+ private void Draw()
+ {
+ if (_drawningHoistingCrane == null)
+ {
+ return;
+ }
+ Bitmap bmp = new(pictureBoxHoistingCrane.Width,
+ pictureBoxHoistingCrane.Height);
+ Graphics gr = Graphics.FromImage(bmp);
+ _drawningHoistingCrane.DrawTransport(gr);
+ pictureBoxHoistingCrane.Image = bmp;
+ }
+
+
+
+ ///
+ /// ""
+ ///
+ ///
+ ///
+ private void buttonCreate_Click(object sender, EventArgs e)
+ {
+ Random random = new();
+ _drawningHoistingCrane = new DrawningHoistingCrane();
+ _drawningHoistingCrane.Init(random.Next(100, 300), random.Next(1000, 3000),
+ Color.FromArgb(random.Next(0, 256), random.Next(0, 256), random.Next(0, 256)),
+ Color.FromArgb(random.Next(0, 256), random.Next(0, 256), random.Next(0, 256)),
+ Convert.ToBoolean(random.Next(0, 2)), Convert.ToBoolean(random.Next(0, 2)));
+ _drawningHoistingCrane.SetPictureSize(pictureBoxHoistingCrane.Width, pictureBoxHoistingCrane.Height);
+ _drawningHoistingCrane.SetPosition(random.Next(10, 100), random.Next(10, 100));
+ //_drawningHoistingCrane.SetPosition(random.Next(pictureBoxHoistingCrane.Width - 210, pictureBoxHoistingCrane.Width - 66), random.Next(10, 100));
+ Draw();
+ }
+
+ ///
+ /// ( )
+ ///
+ ///
+ ///
+ private void buttonMove_Click(object sender, EventArgs e)
+ {
+ if (_drawningHoistingCrane == null)
+ {
+ return;
+ }
+ string name = ((Button)sender)?.Name ?? string.Empty;
+ bool result = false;
+ switch (name)
+ {
+ case "buttonUp":
+ result =
+ _drawningHoistingCrane.MoveTransport(DirectionType.Up);
+ break;
+ case "buttonDown":
+ result =
+ _drawningHoistingCrane.MoveTransport(DirectionType.Down);
+ break;
+ case "buttonLeft":
+ result =
+ _drawningHoistingCrane.MoveTransport(DirectionType.Left);
+ break;
+ case "buttonRight":
+ result =
+ _drawningHoistingCrane.MoveTransport(DirectionType.Right);
+ break;
+ }
+ if (result)
+ {
+ Draw();
+ }
+ }
}
}
+
diff --git a/ProjectHoistingCrane/ProjectHoistingCrane/Form1.resx b/ProjectHoistingCrane/ProjectHoistingCrane/Form1.resx
index 1af7de1..af32865 100644
--- a/ProjectHoistingCrane/ProjectHoistingCrane/Form1.resx
+++ b/ProjectHoistingCrane/ProjectHoistingCrane/Form1.resx
@@ -1,17 +1,17 @@
-
diff --git a/ProjectHoistingCrane/ProjectHoistingCrane/ProjectHoistingCrane.csproj b/ProjectHoistingCrane/ProjectHoistingCrane/ProjectHoistingCrane.csproj
index 663fdb8..af03d74 100644
--- a/ProjectHoistingCrane/ProjectHoistingCrane/ProjectHoistingCrane.csproj
+++ b/ProjectHoistingCrane/ProjectHoistingCrane/ProjectHoistingCrane.csproj
@@ -8,4 +8,19 @@
enable
+
+
+ True
+ True
+ Resources.resx
+
+
+
+
+
+ ResXFileCodeGenerator
+ Resources.Designer.cs
+
+
+
\ No newline at end of file
diff --git a/ProjectHoistingCrane/ProjectHoistingCrane/Properties/Resources.Designer.cs b/ProjectHoistingCrane/ProjectHoistingCrane/Properties/Resources.Designer.cs
new file mode 100644
index 0000000..96efc7c
--- /dev/null
+++ b/ProjectHoistingCrane/ProjectHoistingCrane/Properties/Resources.Designer.cs
@@ -0,0 +1,103 @@
+//------------------------------------------------------------------------------
+//
+// Этот код создан программой.
+// Исполняемая версия:4.0.30319.42000
+//
+// Изменения в этом файле могут привести к неправильной работе и будут потеряны в случае
+// повторной генерации кода.
+//
+//------------------------------------------------------------------------------
+
+namespace ProjectHoistingCrane.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("ProjectHoistingCrane.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 arrowDown {
+ get {
+ object obj = ResourceManager.GetObject("arrowDown", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
+ }
+ }
+
+ ///
+ /// Поиск локализованного ресурса типа System.Drawing.Bitmap.
+ ///
+ internal static System.Drawing.Bitmap arrowLeft {
+ get {
+ object obj = ResourceManager.GetObject("arrowLeft", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
+ }
+ }
+
+ ///
+ /// Поиск локализованного ресурса типа System.Drawing.Bitmap.
+ ///
+ internal static System.Drawing.Bitmap arrowRight {
+ get {
+ object obj = ResourceManager.GetObject("arrowRight", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
+ }
+ }
+
+ ///
+ /// Поиск локализованного ресурса типа System.Drawing.Bitmap.
+ ///
+ internal static System.Drawing.Bitmap arrowUp {
+ get {
+ object obj = ResourceManager.GetObject("arrowUp", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
+ }
+ }
+ }
+}
diff --git a/ProjectHoistingCrane/ProjectHoistingCrane/Properties/Resources.resx b/ProjectHoistingCrane/ProjectHoistingCrane/Properties/Resources.resx
new file mode 100644
index 0000000..dc6b4c5
--- /dev/null
+++ b/ProjectHoistingCrane/ProjectHoistingCrane/Properties/Resources.resx
@@ -0,0 +1,133 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 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
+
+
+
+ ..\Resources\arrowDown.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ ..\Resources\arrowLeft.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ ..\Resources\arrowRight.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ ..\Resources\arrowUp.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
\ No newline at end of file
diff --git a/ProjectHoistingCrane/ProjectHoistingCrane/Resources/arrowDown.png b/ProjectHoistingCrane/ProjectHoistingCrane/Resources/arrowDown.png
new file mode 100644
index 0000000..a96c44a
Binary files /dev/null and b/ProjectHoistingCrane/ProjectHoistingCrane/Resources/arrowDown.png differ
diff --git a/ProjectHoistingCrane/ProjectHoistingCrane/Resources/arrowLeft.png b/ProjectHoistingCrane/ProjectHoistingCrane/Resources/arrowLeft.png
new file mode 100644
index 0000000..64bd189
Binary files /dev/null and b/ProjectHoistingCrane/ProjectHoistingCrane/Resources/arrowLeft.png differ
diff --git a/ProjectHoistingCrane/ProjectHoistingCrane/Resources/arrowRight.png b/ProjectHoistingCrane/ProjectHoistingCrane/Resources/arrowRight.png
new file mode 100644
index 0000000..cfed98c
Binary files /dev/null and b/ProjectHoistingCrane/ProjectHoistingCrane/Resources/arrowRight.png differ
diff --git a/ProjectHoistingCrane/ProjectHoistingCrane/Resources/arrowUp.png b/ProjectHoistingCrane/ProjectHoistingCrane/Resources/arrowUp.png
new file mode 100644
index 0000000..0b54e6f
Binary files /dev/null and b/ProjectHoistingCrane/ProjectHoistingCrane/Resources/arrowUp.png differ