diff --git a/Sailboat/Sailboat.sln b/Sailboat/Sailboat.sln
new file mode 100644
index 0000000..954c51d
--- /dev/null
+++ b/Sailboat/Sailboat.sln
@@ -0,0 +1,25 @@
+
+Microsoft Visual Studio Solution File, Format Version 12.00
+# Visual Studio Version 17
+VisualStudioVersion = 17.4.33213.308
+MinimumVisualStudioVersion = 10.0.40219.1
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Sailboat", "Sailboat\Sailboat.csproj", "{AF199FE4-1F50-4DC6-A71F-EE62776A7746}"
+EndProject
+Global
+ GlobalSection(SolutionConfigurationPlatforms) = preSolution
+ Debug|Any CPU = Debug|Any CPU
+ Release|Any CPU = Release|Any CPU
+ EndGlobalSection
+ GlobalSection(ProjectConfigurationPlatforms) = postSolution
+ {AF199FE4-1F50-4DC6-A71F-EE62776A7746}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+ {AF199FE4-1F50-4DC6-A71F-EE62776A7746}.Debug|Any CPU.Build.0 = Debug|Any CPU
+ {AF199FE4-1F50-4DC6-A71F-EE62776A7746}.Release|Any CPU.ActiveCfg = Release|Any CPU
+ {AF199FE4-1F50-4DC6-A71F-EE62776A7746}.Release|Any CPU.Build.0 = Release|Any CPU
+ EndGlobalSection
+ GlobalSection(SolutionProperties) = preSolution
+ HideSolutionNode = FALSE
+ EndGlobalSection
+ GlobalSection(ExtensibilityGlobals) = postSolution
+ SolutionGuid = {AFACAEC6-235D-4469-BF40-7E31C1A59F1A}
+ EndGlobalSection
+EndGlobal
diff --git a/Sailboat/Sailboat/Direction.cs b/Sailboat/Sailboat/Direction.cs
new file mode 100644
index 0000000..6338944
--- /dev/null
+++ b/Sailboat/Sailboat/Direction.cs
@@ -0,0 +1,16 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace Sailboat
+{
+ internal enum Direction
+ {
+ Up = 1,
+ Down = 2,
+ Left = 3,
+ Right = 4
+ }
+}
diff --git a/Sailboat/Sailboat/DrawningSailboat.cs b/Sailboat/Sailboat/DrawningSailboat.cs
new file mode 100644
index 0000000..26f412a
--- /dev/null
+++ b/Sailboat/Sailboat/DrawningSailboat.cs
@@ -0,0 +1,169 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Net.Mail;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace Sailboat
+{
+ internal class DrawningSailboat
+ {
+ ///
+ /// Класс-сущность
+ ///
+ public EntitySailboat Sailboat { private set; get; }
+ ///
+ /// Левая координата отрисовки Парусной лодки
+ ///
+ private float _startPosX;
+ ///
+ /// Верхняя кооридната отрисовки Парусной лодки
+ ///
+ private float _startPosY;
+ ///
+ /// Ширина окна отрисовки
+ ///
+ private int? _pictureWidth = null;
+ ///
+ /// Высота окна отрисовки
+ ///
+ private int? _pictureHeight = null;
+ ///
+ /// Ширина отрисовки Парусной лодки
+ ///
+ private readonly int _sailboatWidth = 225;
+ ///
+ /// Высота отрисовки Парусной лодки
+ ///
+ private readonly int _sailboatHeight = 90;
+ ///
+ /// Инициализация свойств
+ ///
+ /// Скорость
+ /// Ширина
+ /// Цвет кузова
+ public void Init(int speed, float weight, Color bodyColor)
+ {
+ Sailboat = new EntitySailboat();
+ Sailboat.Init(speed, weight, bodyColor);
+ }
+ ///
+ /// Установка позиции Парусной лодки
+ ///
+ /// Координата X
+ /// Координата Y
+ /// Ширина картинки
+ /// Высота картинки
+ public void SetPosition(int x, int y, int width, int height)
+ {
+ // TODO проверки
+ _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 + _sailboatWidth + Sailboat.Step < _pictureWidth)
+ {
+ _startPosX += Sailboat.Step;
+ }
+ break;
+ //влево
+ case Direction.Left:
+ if (_startPosX - Sailboat.Step >= 0)
+ {
+ _startPosX -= Sailboat.Step;
+ }
+ break;
+ //вверх
+ case Direction.Up:
+ if (_startPosY - Sailboat.Step >= 0)
+ {
+ _startPosY -= Sailboat.Step;
+ }
+ break;
+ //вниз
+ case Direction.Down:
+ if (_startPosY + _sailboatHeight + Sailboat.Step < _pictureHeight)
+ {
+ _startPosY += Sailboat.Step;
+ }
+ break;
+ }
+ }
+ ///
+ /// Отрисовка Парусная лодка
+ ///
+ ///
+ public void DrawTransport(Graphics g)
+ {
+ if (_startPosX < 0 || _startPosY < 0
+ || !_pictureHeight.HasValue || !_pictureWidth.HasValue)
+ {
+ return;
+ }
+ Pen pen = new(Color.Black);
+ //Лодка
+ Brush br = new SolidBrush(Sailboat.BodyColor);
+ PointF point1 = new PointF(_startPosX + 150, _startPosY);
+ PointF point2 = new PointF(_startPosX + 225, _startPosY + 33);
+ PointF point3 = new PointF(_startPosX + 150, _startPosY + 66);
+ PointF point4 = new PointF(_startPosX, _startPosY + 66);
+ PointF point5 = new PointF(_startPosX, _startPosY);
+ PointF[] carcass =
+ {
+ point1,
+ point2,
+ point3,
+ point4,
+ point5
+ };
+ g.FillPolygon(br, carcass);
+ g.DrawPolygon(pen, carcass);
+
+ //Каюта
+ g.DrawArc(pen, new RectangleF(_startPosX + 10, _startPosY + 10, 40, 45), 90, 180);
+ g.DrawLine(pen, new PointF(_startPosX + 25, _startPosY + 10), new PointF(_startPosX + 138, _startPosY + 10));
+ g.DrawArc(pen, new RectangleF(_startPosX + 115, _startPosY + 10, 40, 45), 270, 180);
+ g.DrawLine(pen, new PointF(_startPosX + 25, _startPosY + 55), new PointF(_startPosX + 138, _startPosY + 55));
+ }
+ ///
+ /// Смена границ формы отрисовки
+ ///
+ /// Ширина картинки
+ /// Высота картинки
+ public void ChangeBorders(int width, int height)
+ {
+ _pictureWidth = width;
+ _pictureHeight = height;
+ if (_pictureWidth <= _sailboatWidth || _pictureHeight <= _sailboatHeight)
+ {
+ _pictureWidth = null;
+ _pictureHeight = null;
+ return;
+ }
+ if (_startPosX + _sailboatWidth > _pictureWidth)
+ {
+ _startPosX = _pictureWidth.Value - _sailboatWidth;
+ }
+ if (_startPosY + _sailboatHeight > _pictureHeight)
+ {
+ _startPosY = _pictureHeight.Value - _sailboatHeight;
+ }
+ }
+ }
+}
diff --git a/Sailboat/Sailboat/EntitySailboat.cs b/Sailboat/Sailboat/EntitySailboat.cs
new file mode 100644
index 0000000..3020926
--- /dev/null
+++ b/Sailboat/Sailboat/EntitySailboat.cs
@@ -0,0 +1,42 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace Sailboat
+{
+ internal class EntitySailboat
+ {
+ ///
+ /// Скорость
+ ///
+ 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/Sailboat/Sailboat/FormSailboat.Designer.cs b/Sailboat/Sailboat/FormSailboat.Designer.cs
new file mode 100644
index 0000000..2692532
--- /dev/null
+++ b/Sailboat/Sailboat/FormSailboat.Designer.cs
@@ -0,0 +1,181 @@
+namespace Sailboat
+{
+ partial class FormSailboat
+ {
+ ///
+ /// 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.statusStrip = 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.pictureBoxSailboat = new System.Windows.Forms.PictureBox();
+ this.buttonCreate = new System.Windows.Forms.Button();
+ 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.statusStrip.SuspendLayout();
+ ((System.ComponentModel.ISupportInitialize)(this.pictureBoxSailboat)).BeginInit();
+ this.SuspendLayout();
+ //
+ // statusStrip
+ //
+ this.statusStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
+ this.toolStripStatusLabelSpeed,
+ this.toolStripStatusLabelWeight,
+ this.toolStripStatusLabelBodyColor});
+ this.statusStrip.Location = new System.Drawing.Point(0, 440);
+ this.statusStrip.Name = "statusStrip";
+ this.statusStrip.Size = new System.Drawing.Size(884, 22);
+ this.statusStrip.TabIndex = 0;
+ this.statusStrip.Text = "statusStrip";
+ //
+ // toolStripStatusLabelSpeed
+ //
+ this.toolStripStatusLabelSpeed.Name = "toolStripStatusLabelSpeed";
+ this.toolStripStatusLabelSpeed.Size = new System.Drawing.Size(59, 17);
+ this.toolStripStatusLabelSpeed.Text = "Скорость";
+ //
+ // toolStripStatusLabelWeight
+ //
+ this.toolStripStatusLabelWeight.Name = "toolStripStatusLabelWeight";
+ this.toolStripStatusLabelWeight.Size = new System.Drawing.Size(26, 17);
+ this.toolStripStatusLabelWeight.Text = "Вес";
+ //
+ // toolStripStatusLabelBodyColor
+ //
+ this.toolStripStatusLabelBodyColor.Name = "toolStripStatusLabelBodyColor";
+ this.toolStripStatusLabelBodyColor.Size = new System.Drawing.Size(33, 17);
+ this.toolStripStatusLabelBodyColor.Text = "Цвет";
+ //
+ // pictureBoxSailboat
+ //
+ this.pictureBoxSailboat.Dock = System.Windows.Forms.DockStyle.Fill;
+ this.pictureBoxSailboat.Location = new System.Drawing.Point(0, 0);
+ this.pictureBoxSailboat.Name = "pictureBoxSailboat";
+ this.pictureBoxSailboat.Size = new System.Drawing.Size(884, 462);
+ this.pictureBoxSailboat.SizeMode = System.Windows.Forms.PictureBoxSizeMode.AutoSize;
+ this.pictureBoxSailboat.TabIndex = 1;
+ this.pictureBoxSailboat.TabStop = false;
+ this.pictureBoxSailboat.Resize += new System.EventHandler(this.PictureBoxSailboat_Resize);
+ //
+ // 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, 405);
+ this.buttonCreate.Name = "buttonCreate";
+ this.buttonCreate.Size = new System.Drawing.Size(75, 23);
+ this.buttonCreate.TabIndex = 2;
+ this.buttonCreate.Text = "Создать";
+ this.buttonCreate.UseVisualStyleBackColor = true;
+ this.buttonCreate.Click += new System.EventHandler(this.buttonCreate_Click);
+ //
+ // buttonUp
+ //
+ this.buttonUp.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
+ this.buttonUp.BackgroundImage = global::Sailboat.Properties.Resources.arrowUp;
+ this.buttonUp.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.buttonUp.Location = new System.Drawing.Point(744, 322);
+ this.buttonUp.Name = "buttonUp";
+ this.buttonUp.Size = new System.Drawing.Size(45, 45);
+ this.buttonUp.TabIndex = 3;
+ 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::Sailboat.Properties.Resources.arrowLeft;
+ this.buttonLeft.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.buttonLeft.Location = new System.Drawing.Point(693, 373);
+ this.buttonLeft.Name = "buttonLeft";
+ this.buttonLeft.Size = new System.Drawing.Size(45, 45);
+ this.buttonLeft.TabIndex = 4;
+ 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::Sailboat.Properties.Resources.arrowDown;
+ this.buttonDown.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.buttonDown.Location = new System.Drawing.Point(744, 373);
+ this.buttonDown.Name = "buttonDown";
+ this.buttonDown.Size = new System.Drawing.Size(45, 45);
+ this.buttonDown.TabIndex = 5;
+ 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::Sailboat.Properties.Resources.arrowRight;
+ this.buttonRight.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.buttonRight.Location = new System.Drawing.Point(795, 373);
+ this.buttonRight.Name = "buttonRight";
+ this.buttonRight.Size = new System.Drawing.Size(45, 45);
+ this.buttonRight.TabIndex = 6;
+ this.buttonRight.UseVisualStyleBackColor = true;
+ this.buttonRight.Click += new System.EventHandler(this.buttonMove_Click);
+ //
+ // FormSailboat
+ //
+ this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
+ this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
+ this.ClientSize = new System.Drawing.Size(884, 462);
+ this.Controls.Add(this.buttonRight);
+ this.Controls.Add(this.buttonDown);
+ this.Controls.Add(this.buttonLeft);
+ this.Controls.Add(this.buttonUp);
+ this.Controls.Add(this.buttonCreate);
+ this.Controls.Add(this.statusStrip);
+ this.Controls.Add(this.pictureBoxSailboat);
+ this.Name = "FormSailboat";
+ this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
+ this.Text = "Форма лодка";
+ this.statusStrip.ResumeLayout(false);
+ this.statusStrip.PerformLayout();
+ ((System.ComponentModel.ISupportInitialize)(this.pictureBoxSailboat)).EndInit();
+ this.ResumeLayout(false);
+ this.PerformLayout();
+
+ }
+
+ #endregion
+
+ private StatusStrip statusStrip;
+ private ToolStripStatusLabel toolStripStatusLabelSpeed;
+ private ToolStripStatusLabel toolStripStatusLabelWeight;
+ private ToolStripStatusLabel toolStripStatusLabelBodyColor;
+ private PictureBox pictureBoxSailboat;
+ private Button buttonCreate;
+ private Button buttonUp;
+ private Button buttonLeft;
+ private Button buttonDown;
+ private Button buttonRight;
+ }
+}
\ No newline at end of file
diff --git a/Sailboat/Sailboat/FormSailboat.cs b/Sailboat/Sailboat/FormSailboat.cs
new file mode 100644
index 0000000..2cbb152
--- /dev/null
+++ b/Sailboat/Sailboat/FormSailboat.cs
@@ -0,0 +1,65 @@
+namespace Sailboat
+{
+ public partial class FormSailboat : Form
+ {
+
+ private DrawningSailboat _sailboat;
+
+ public FormSailboat()
+ {
+ InitializeComponent();
+ }
+
+ ///
+ private void Draw()
+ {
+ Bitmap bmp = new(pictureBoxSailboat.Width, pictureBoxSailboat.Height);
+ Graphics gr = Graphics.FromImage(bmp);
+ _sailboat?.DrawTransport(gr);
+ pictureBoxSailboat.Image = bmp;
+ }
+
+ private void buttonCreate_Click(object sender, EventArgs e)
+ {
+ Random rnd = new();
+ _sailboat = new DrawningSailboat();
+ _sailboat.Init(rnd.Next(100, 300), rnd.Next(1000, 2000),
+ Color.FromArgb(rnd.Next(0, 256), rnd.Next(0, 256), rnd.Next(0, 256)));
+ _sailboat.SetPosition(rnd.Next(10, 100), rnd.Next(10, 100),
+ pictureBoxSailboat.Width, pictureBoxSailboat.Height);
+ toolStripStatusLabelSpeed.Text = $": {_sailboat.Sailboat.Speed}";
+ toolStripStatusLabelWeight.Text = $": {_sailboat.Sailboat.Weight}";
+ toolStripStatusLabelBodyColor.Text = $": {_sailboat.Sailboat.BodyColor.Name}";
+ Draw();
+ }
+
+ private void buttonMove_Click(object sender, EventArgs e)
+ {
+ //
+ string name = ((Button)sender)?.Name ?? string.Empty;
+ switch (name)
+ {
+ case "buttonUp":
+ _sailboat?.MoveTransport(Direction.Up);
+ break;
+ case "buttonDown":
+ _sailboat?.MoveTransport(Direction.Down);
+ break;
+ case "buttonLeft":
+ _sailboat?.MoveTransport(Direction.Left);
+ break;
+ case "buttonRight":
+ _sailboat?.MoveTransport(Direction.Right);
+ break;
+ }
+ Draw();
+ }
+
+ private void PictureBoxSailboat_Resize(object sender, EventArgs e)
+ {
+ _sailboat?.ChangeBorders(pictureBoxSailboat.Width, pictureBoxSailboat.Height);
+ Draw();
+ }
+
+ }
+}
\ No newline at end of file
diff --git a/Sailboat/Sailboat/FormSailboat.resx b/Sailboat/Sailboat/FormSailboat.resx
new file mode 100644
index 0000000..2c0949d
--- /dev/null
+++ b/Sailboat/Sailboat/FormSailboat.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/Sailboat/Sailboat/Program.cs b/Sailboat/Sailboat/Program.cs
new file mode 100644
index 0000000..89c8af2
--- /dev/null
+++ b/Sailboat/Sailboat/Program.cs
@@ -0,0 +1,17 @@
+namespace Sailboat
+{
+ internal static class Program
+ {
+ ///
+ /// The main entry point for the application.
+ ///
+ [STAThread]
+ static void Main()
+ {
+ // To customize application configuration such as set high DPI settings or default font,
+ // see https://aka.ms/applicationconfiguration.
+ ApplicationConfiguration.Initialize();
+ Application.Run(new FormSailboat());
+ }
+ }
+}
\ No newline at end of file
diff --git a/Sailboat/Sailboat/Properties/Resources.Designer.cs b/Sailboat/Sailboat/Properties/Resources.Designer.cs
new file mode 100644
index 0000000..cfa1e90
--- /dev/null
+++ b/Sailboat/Sailboat/Properties/Resources.Designer.cs
@@ -0,0 +1,103 @@
+//------------------------------------------------------------------------------
+//
+// Этот код создан программой.
+// Исполняемая версия:4.0.30319.42000
+//
+// Изменения в этом файле могут привести к неправильной работе и будут потеряны в случае
+// повторной генерации кода.
+//
+//------------------------------------------------------------------------------
+
+namespace Sailboat.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("Sailboat.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/Sailboat/Sailboat/Properties/Resources.resx b/Sailboat/Sailboat/Properties/Resources.resx
new file mode 100644
index 0000000..b354c7b
--- /dev/null
+++ b/Sailboat/Sailboat/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\arrowLeft.jpg;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ ..\Resources\arrowDown.jpg;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ ..\Resources\arrowRight.jpg;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ ..\Resources\arrowUp.jpg;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
\ No newline at end of file
diff --git a/Sailboat/Sailboat/Resources/arrowDown.jpg b/Sailboat/Sailboat/Resources/arrowDown.jpg
new file mode 100644
index 0000000..f21002e
Binary files /dev/null and b/Sailboat/Sailboat/Resources/arrowDown.jpg differ
diff --git a/Sailboat/Sailboat/Resources/arrowLeft.jpg b/Sailboat/Sailboat/Resources/arrowLeft.jpg
new file mode 100644
index 0000000..61b8dae
Binary files /dev/null and b/Sailboat/Sailboat/Resources/arrowLeft.jpg differ
diff --git a/Sailboat/Sailboat/Resources/arrowRight.jpg b/Sailboat/Sailboat/Resources/arrowRight.jpg
new file mode 100644
index 0000000..b440197
Binary files /dev/null and b/Sailboat/Sailboat/Resources/arrowRight.jpg differ
diff --git a/Sailboat/Sailboat/Resources/arrowUp.jpg b/Sailboat/Sailboat/Resources/arrowUp.jpg
new file mode 100644
index 0000000..e630cea
Binary files /dev/null and b/Sailboat/Sailboat/Resources/arrowUp.jpg differ
diff --git a/Sailboat/Sailboat/Sailboat.csproj b/Sailboat/Sailboat/Sailboat.csproj
new file mode 100644
index 0000000..13ee123
--- /dev/null
+++ b/Sailboat/Sailboat/Sailboat.csproj
@@ -0,0 +1,26 @@
+
+
+
+ WinExe
+ net6.0-windows
+ enable
+ true
+ enable
+
+
+
+
+ True
+ True
+ Resources.resx
+
+
+
+
+
+ ResXFileCodeGenerator
+ Resources.Designer.cs
+
+
+
+
\ No newline at end of file