From 044c1ca2d6482d5c260e3733c5c1adc967fae2f7 Mon Sep 17 00:00:00 2001 From: User fayziddin Date: Fri, 21 Feb 2025 10:43:21 +0300 Subject: [PATCH] =?UTF-8?q?=D0=97=D0=B0=D0=B2=D0=B5=D1=80=D1=88=D0=B5?= =?UTF-8?q?=D0=BD=D0=B8=D0=B5=20=D0=BF=D1=80=D0=BE=D0=B5=D0=BA=D1=82=D0=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../ProjectCatamaran/ProjectCatamaran.sln | 22 ++ .../ProjectCatamaran/DirectionType.cs | 27 +++ .../ProjectCatamaran/DrawingCatamaran.cs | 223 ++++++++++++++++++ .../ProjectCatamaran/EntityCatamaran.cs | 77 ++++++ .../FormCatamaran.Designer.cs | 136 +++++++++++ .../ProjectCatamaran/FormCatamaran.cs | 97 ++++++++ .../ProjectCatamaran/FormCatamaran.resx | 153 ++++++++++++ .../ProjectCatamaran/Program.cs | 17 ++ .../ProjectCatamaran/ProjectCatamaran.csproj | 26 ++ .../Properties/Resources.Designer.cs | 73 ++++++ .../Properties/Resources.resx | 124 ++++++++++ .../ProjectCatamaran/Resources/arrowLeft.png | Bin 0 -> 241 bytes 12 files changed, 975 insertions(+) create mode 100644 ProjectCatamaran/ProjectCatamaran/ProjectCatamaran.sln create mode 100644 ProjectCatamaran/ProjectCatamaran/ProjectCatamaran/DirectionType.cs create mode 100644 ProjectCatamaran/ProjectCatamaran/ProjectCatamaran/DrawingCatamaran.cs create mode 100644 ProjectCatamaran/ProjectCatamaran/ProjectCatamaran/EntityCatamaran.cs create mode 100644 ProjectCatamaran/ProjectCatamaran/ProjectCatamaran/FormCatamaran.Designer.cs create mode 100644 ProjectCatamaran/ProjectCatamaran/ProjectCatamaran/FormCatamaran.cs create mode 100644 ProjectCatamaran/ProjectCatamaran/ProjectCatamaran/FormCatamaran.resx create mode 100644 ProjectCatamaran/ProjectCatamaran/ProjectCatamaran/Program.cs create mode 100644 ProjectCatamaran/ProjectCatamaran/ProjectCatamaran/ProjectCatamaran.csproj create mode 100644 ProjectCatamaran/ProjectCatamaran/ProjectCatamaran/Properties/Resources.Designer.cs create mode 100644 ProjectCatamaran/ProjectCatamaran/ProjectCatamaran/Properties/Resources.resx create mode 100644 ProjectCatamaran/ProjectCatamaran/ProjectCatamaran/Resources/arrowLeft.png diff --git a/ProjectCatamaran/ProjectCatamaran/ProjectCatamaran.sln b/ProjectCatamaran/ProjectCatamaran/ProjectCatamaran.sln new file mode 100644 index 0000000..4b81481 --- /dev/null +++ b/ProjectCatamaran/ProjectCatamaran/ProjectCatamaran.sln @@ -0,0 +1,22 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 17 +VisualStudioVersion = 17.12.35707.178 d17.12 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ProjectCatamaran", "ProjectCatamaran\ProjectCatamaran.csproj", "{D7672336-2D5D-4251-9507-838C777FA896}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {D7672336-2D5D-4251-9507-838C777FA896}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {D7672336-2D5D-4251-9507-838C777FA896}.Debug|Any CPU.Build.0 = Debug|Any CPU + {D7672336-2D5D-4251-9507-838C777FA896}.Release|Any CPU.ActiveCfg = Release|Any CPU + {D7672336-2D5D-4251-9507-838C777FA896}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection +EndGlobal diff --git a/ProjectCatamaran/ProjectCatamaran/ProjectCatamaran/DirectionType.cs b/ProjectCatamaran/ProjectCatamaran/ProjectCatamaran/DirectionType.cs new file mode 100644 index 0000000..5929699 --- /dev/null +++ b/ProjectCatamaran/ProjectCatamaran/ProjectCatamaran/DirectionType.cs @@ -0,0 +1,27 @@ +namespace ProjectCatamaran; + +/// +/// Направление перемещения +/// +public enum DirectionType +{ + /// + /// Вверх + /// + Up = 1, + + /// + /// Вниз + /// + Down = 2, + + /// + /// Влево + /// + Left = 3, + + /// + /// Вправо + /// + Right = 4 +} diff --git a/ProjectCatamaran/ProjectCatamaran/ProjectCatamaran/DrawingCatamaran.cs b/ProjectCatamaran/ProjectCatamaran/ProjectCatamaran/DrawingCatamaran.cs new file mode 100644 index 0000000..6de0d61 --- /dev/null +++ b/ProjectCatamaran/ProjectCatamaran/ProjectCatamaran/DrawingCatamaran.cs @@ -0,0 +1,223 @@ +namespace ProjectCatamaran; + +/// +/// Класс-сущность +/// +public class DrawingCatamaran +{ + /// + /// Класс-сущность + /// + public EntityCatamaran? EntityCatamaran { get; set; } + + /// + /// Ширина окна + /// + private int? _pictureWidth; + + /// + /// Высота окна + /// + private int? _pictureHeight; + + /// + /// Левая координата прорисовки катамарана + /// + private int? _startPosX; + + /// + /// Верхняя кооридната прорисовки катамарана + /// + private int? _startPosY; + + /// + /// Ширина прорисовки катамарана + /// + private readonly int _drawningCatamaranWidth = 120; + + /// + /// Высота прорисовки катамарана + /// + private readonly int _drawningCatamaranHeight = 41; + + /// + /// Инициализация полей объекта-класса спортивного автомобиля + /// + /// Скорость + /// Вес катамаран + /// Основной цвет + /// Дополнительный цвет + /// Дополнительный цвет + /// Признак наличия поплавка + /// Признак наличия паруса + public void Init(int speed, double weight, Color bodyColor, Color additionalColor1, Color additionalColor2, bool poplavok, bool sail, bool vesla) + { + EntityCatamaran = new EntityCatamaran(); + EntityCatamaran.Init(speed, weight, bodyColor, additionalColor1, additionalColor2, poplavok, sail, vesla); + _pictureHeight = null; + _pictureWidth = null; + _startPosX = null; + _startPosY = null; + } + + /// + /// Установка границ поля + /// + /// Ширина поля + /// Высота поля + /// true - границы заданы, false - проверка не пройдена, нельзя разместить объект в этих размерах + public void SetPictureSize(int width, int height) + + { + if (_drawningCatamaranHeight > height || _drawningCatamaranWidth > width) return; + + // TODO проверка, что объект "влезает" в размеры поля + // если влезает, сохраняем границы и корректируем позицию объекта, если она была уже установлена + _pictureWidth = width; + _pictureHeight = height; + } + + /// + /// Установка позиции + /// + /// Координата X + /// Координата Y + public void SetPosition(int x, int y) + { + if (!_pictureHeight.HasValue || !_pictureWidth.HasValue) + { + return; /// Размеры формы не установлены + } + + /// Проверяем, чтобы объект не выходил за границы формы по оси X + if (x < 0) + { + _startPosX = 0; + } + else if (x + _drawningCatamaranWidth > _pictureWidth) + { + _startPosX = _pictureWidth.Value - _drawningCatamaranWidth; + } + else + { + _startPosX = x; + } + + /// Проверяем, чтобы объект не выходил за границы формы по оси Y + if (y < 0) + { + _startPosY = 0; + } + else if (y + _drawningCatamaranHeight > _pictureHeight) + { + _startPosY = _pictureHeight.Value - _drawningCatamaranHeight; + } + else + { + _startPosY = y; + } + } + + /// + /// Изменение направления перемещения + /// + /// Направление + /// true - перемещене выполнено, false - перемещение невозможно + public bool MoveTransport(DirectionType direction) + { + if (EntityCatamaran == null || !_startPosX.HasValue || !_startPosY.HasValue) + { + return false; + } + + switch (direction) + { + //влево + case DirectionType.Left: + if (_startPosX.Value - EntityCatamaran.Step > 0) + { + _startPosX -= (int)EntityCatamaran.Step; + } + return true; + //вверх + case DirectionType.Up: + if (_startPosY.Value - EntityCatamaran.Step > 0) + { + _startPosY -= (int)EntityCatamaran.Step; + } + return true; + // вправо + case DirectionType.Right: + if (_startPosX.Value + EntityCatamaran.Step + _drawningCatamaranWidth < _pictureWidth) + { + _startPosX += (int)EntityCatamaran.Step; + } + return true; + //вниз + case DirectionType.Down: + if (_startPosY.Value + EntityCatamaran.Step + _drawningCatamaranHeight < _pictureHeight) + { + _startPosY += (int)EntityCatamaran.Step; + } + return true; + default: + return false; + } + } + + public void DrawTransport(Graphics g) + { + if (!_startPosX.HasValue || !_startPosY.HasValue) + { + return; + } + + Pen pen = new Pen(Color.Black, 2); + Brush brush1 = new SolidBrush(EntityCatamaran.BodyColor); + Brush brush2 = new SolidBrush(EntityCatamaran.AdditionalColor1); + Brush brush3 = new SolidBrush(EntityCatamaran.AdditionalColor2); + + ///корпус + Point[] korpus = + { + new Point(_startPosX.Value, _startPosY.Value + 38), + new Point(_startPosX.Value + 90, _startPosY.Value + 38), + new Point(_startPosX.Value + 120, _startPosY.Value + 54), + new Point(_startPosX.Value + 90, _startPosY.Value + 68), + new Point(_startPosX.Value, _startPosY.Value + 68) + }; + + g.FillPolygon(brush1, korpus); + g.DrawPolygon(pen, korpus); + + ///внутренняя часть катамарана + Rectangle innerOval = new Rectangle(_startPosX.Value + 5, _startPosY.Value + 43, 75, 20); + g.FillEllipse(brush2, innerOval); + g.DrawEllipse(pen, innerOval); + + ///поплавки слева и справа + if (EntityCatamaran.Poplavok) + { + Rectangle leftFloat = new Rectangle(_startPosX.Value + 5, _startPosY.Value + 28, 80, 10); + Rectangle rightFloat = new Rectangle(_startPosX.Value + 5, _startPosY.Value + 68, 80, 10); + + g.FillEllipse(brush2, leftFloat); + g.DrawEllipse(pen, leftFloat); + g.FillEllipse(brush2, rightFloat); + g.DrawEllipse(pen, rightFloat); + } + /// Парус + if (EntityCatamaran.Sail) + { + Point[] sail = + { + new Point(_startPosX.Value + 40, _startPosY.Value + 63), + new Point(_startPosX.Value + 40, _startPosY.Value + 3), + new Point(_startPosX.Value + 70, _startPosY.Value + 63) + }; + + g.FillPolygon(brush3, sail); + g.DrawPolygon(pen, sail); + } + } +} diff --git a/ProjectCatamaran/ProjectCatamaran/ProjectCatamaran/EntityCatamaran.cs b/ProjectCatamaran/ProjectCatamaran/ProjectCatamaran/EntityCatamaran.cs new file mode 100644 index 0000000..d4b89f0 --- /dev/null +++ b/ProjectCatamaran/ProjectCatamaran/ProjectCatamaran/EntityCatamaran.cs @@ -0,0 +1,77 @@ +using System.Net.NetworkInformation; + +namespace ProjectCatamaran; + +/// +/// Класс-сущность "Катамаран" +/// +public class EntityCatamaran +{ + /// + /// Скорость + /// + public int Speed { get; private set; } + + /// + /// Вес + /// + public double Weight { get; private set; } + + /// + /// Основной цвет + /// + public Color BodyColor { get; private set; } + + /// + /// Дополнительный цвет1 (для опциональных элементов) + /// + public Color AdditionalColor1 { get; private set; } + + /// + /// Дополнительный цвет2 (для опциональных элементов) + /// + public Color AdditionalColor2 { get; private set; } + + /// + /// Признак (опция) наличия поплавка + /// + public bool Poplavok { get; private set; } + + /// + /// Признак (опция) наличие паруса + /// + public bool Sail { get; private set; } + + /// + /// Шаг перемещения катамарана + /// + public double Step => Speed * 70 / Weight; + + /// + /// Признак вёсел(опция заготовка) + /// + public bool Vesla { get; private set; } + + /// + /// Инициализация полей объекта-класса катамарана + /// + /// Скорость + /// Вес катамаран + /// Основной цвет + /// Дополнительный цвет1 + /// Дополнительный цвет2 + /// Признак наличия поплавка + /// Признак наличия паруса + /// Признак наличия вёсел + public void Init(int speed, double weight, Color bodyColor, Color additionalColor1, Color additionalColor2, bool poplavok, bool sail, bool vesla) + { + Speed = speed; + Weight = weight; + BodyColor = bodyColor; + AdditionalColor1 = additionalColor1; + AdditionalColor2 = additionalColor2; + Poplavok = poplavok; + Sail = sail; + Vesla = vesla; + } +} diff --git a/ProjectCatamaran/ProjectCatamaran/ProjectCatamaran/FormCatamaran.Designer.cs b/ProjectCatamaran/ProjectCatamaran/ProjectCatamaran/FormCatamaran.Designer.cs new file mode 100644 index 0000000..aaecde0 --- /dev/null +++ b/ProjectCatamaran/ProjectCatamaran/ProjectCatamaran/FormCatamaran.Designer.cs @@ -0,0 +1,136 @@ +namespace ProjectCatamaran +{ + partial class FormCatamaran + { + /// + /// 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(FormCatamaran)); + pictureBoxCatamaran = new PictureBox(); + button1 = new Button(); + buttonLeft = new Button(); + buttonDown = new Button(); + buttonUp = new Button(); + buttonRight = new Button(); + ((System.ComponentModel.ISupportInitialize)pictureBoxCatamaran).BeginInit(); + SuspendLayout(); + // + // pictureBoxCatamaran + // + pictureBoxCatamaran.Dock = DockStyle.Fill; + pictureBoxCatamaran.Location = new Point(0, 0); + pictureBoxCatamaran.Name = "pictureBoxCatamaran"; + pictureBoxCatamaran.Size = new Size(800, 450); + pictureBoxCatamaran.TabIndex = 0; + pictureBoxCatamaran.TabStop = false; + // + // button1 + // + button1.Anchor = AnchorStyles.Bottom | AnchorStyles.Left; + button1.Location = new Point(12, 415); + button1.Name = "button1"; + button1.Size = new Size(75, 23); + button1.TabIndex = 1; + button1.Text = "Создать"; + button1.UseVisualStyleBackColor = true; + button1.Click += buttonCreateCatamaran_Click; + // + // buttonLeft + // + buttonLeft.Anchor = AnchorStyles.Bottom | AnchorStyles.Right; + buttonLeft.BackgroundImage = Properties.Resources.arrowLeft; + buttonLeft.BackgroundImageLayout = ImageLayout.Stretch; + buttonLeft.Location = new Point(675, 405); + buttonLeft.Name = "buttonLeft"; + buttonLeft.Size = new Size(35, 35); + buttonLeft.TabIndex = 2; + buttonLeft.UseVisualStyleBackColor = true; + buttonLeft.Click += ButtonMove_Click; + // + // buttonDown + // + buttonDown.Anchor = AnchorStyles.Bottom | AnchorStyles.Right; + buttonDown.BackgroundImage = (Image)resources.GetObject("buttonDown.BackgroundImage"); + buttonDown.BackgroundImageLayout = ImageLayout.Stretch; + buttonDown.Image = (Image)resources.GetObject("buttonDown.Image"); + buttonDown.Location = new Point(716, 405); + buttonDown.Name = "buttonDown"; + buttonDown.Size = new Size(35, 35); + buttonDown.TabIndex = 3; + buttonDown.UseVisualStyleBackColor = true; + buttonDown.Click += ButtonMove_Click; + // + // buttonUp + // + buttonUp.Anchor = AnchorStyles.Bottom | AnchorStyles.Right; + buttonUp.BackgroundImage = (Image)resources.GetObject("buttonUp.BackgroundImage"); + buttonUp.BackgroundImageLayout = ImageLayout.Stretch; + buttonUp.Location = new Point(716, 370); + buttonUp.Name = "buttonUp"; + buttonUp.Size = new Size(35, 35); + buttonUp.TabIndex = 4; + buttonUp.UseVisualStyleBackColor = true; + buttonUp.Click += ButtonMove_Click; + // + // buttonRight + // + buttonRight.Anchor = AnchorStyles.Bottom | AnchorStyles.Right; + buttonRight.BackgroundImage = (Image)resources.GetObject("buttonRight.BackgroundImage"); + buttonRight.BackgroundImageLayout = ImageLayout.Stretch; + buttonRight.Location = new Point(757, 405); + buttonRight.Name = "buttonRight"; + buttonRight.Size = new Size(35, 35); + buttonRight.TabIndex = 5; + buttonRight.UseVisualStyleBackColor = true; + buttonRight.Click += ButtonMove_Click; + // + // FormCatamaran + // + AutoScaleDimensions = new SizeF(7F, 15F); + AutoScaleMode = AutoScaleMode.Font; + ClientSize = new Size(800, 450); + Controls.Add(buttonRight); + Controls.Add(buttonUp); + Controls.Add(buttonDown); + Controls.Add(buttonLeft); + Controls.Add(button1); + Controls.Add(pictureBoxCatamaran); + Name = "FormCatamaran"; + Text = "FormCatamaran"; + ((System.ComponentModel.ISupportInitialize)pictureBoxCatamaran).EndInit(); + ResumeLayout(false); + } + + #endregion + + private PictureBox pictureBoxCatamaran; + private Button button1; + private Button buttonLeft; + private Button buttonDown; + private Button buttonUp; + private Button buttonRight; + } +} \ No newline at end of file diff --git a/ProjectCatamaran/ProjectCatamaran/ProjectCatamaran/FormCatamaran.cs b/ProjectCatamaran/ProjectCatamaran/ProjectCatamaran/FormCatamaran.cs new file mode 100644 index 0000000..e9c2675 --- /dev/null +++ b/ProjectCatamaran/ProjectCatamaran/ProjectCatamaran/FormCatamaran.cs @@ -0,0 +1,97 @@ +using System; +using System.Collections.Generic; +using System.ComponentModel; +using System.Data; +using System.Drawing; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using System.Windows.Forms; + +namespace ProjectCatamaran +{ + public partial class FormCatamaran : Form + { + private DrawingCatamaran? _drawingCatamaran; + + public FormCatamaran() + { + InitializeComponent(); + } + + /// + /// Метод прорисовки катамарана + /// + private void Draw() + { + if (_drawingCatamaran == null) + { + return; + } + + Bitmap bmp = new(pictureBoxCatamaran.Width, pictureBoxCatamaran.Height); + Graphics gr = Graphics.FromImage(bmp); + _drawingCatamaran.DrawTransport(gr); + pictureBoxCatamaran.Image = bmp; + } + + /// + /// Обработка нажатия кнопки "Создать" + /// + /// + /// + private void buttonCreateCatamaran_Click(object sender, EventArgs e) + { + Random random = new(); + _drawingCatamaran = new DrawingCatamaran(); + _drawingCatamaran.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)), + 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)), Convert.ToBoolean(random.Next(0, 2))); + _drawingCatamaran.SetPictureSize(pictureBoxCatamaran.Width, pictureBoxCatamaran.Height); + _drawingCatamaran.SetPosition(random.Next(10, 100), random.Next(10, 100)); + + Bitmap bmp = new(pictureBoxCatamaran.Width, pictureBoxCatamaran.Height); + Graphics gr = Graphics.FromImage(bmp); + _drawingCatamaran.DrawTransport(gr); + pictureBoxCatamaran.Image = bmp; + } + + /// + /// Перемещение объекта по форме (нажатие кнопок навигации) + /// + /// + /// + private void ButtonMove_Click(object sender, EventArgs e) + { + if (_drawingCatamaran == null) + { + return; + } + + string name = ((Button)sender)?.Name ?? string.Empty; + bool result = false; + switch (name) + { + case "buttonUp": + result = _drawingCatamaran.MoveTransport(DirectionType.Up); + break; + case "buttonDown": + result = _drawingCatamaran.MoveTransport(DirectionType.Down); + break; + case "buttonLeft": + result = _drawingCatamaran.MoveTransport(DirectionType.Left); + break; + case "buttonRight": + result = _drawingCatamaran.MoveTransport(DirectionType.Right); + break; + } + + if (result) + { + Draw(); + } + } + } +} diff --git a/ProjectCatamaran/ProjectCatamaran/ProjectCatamaran/FormCatamaran.resx b/ProjectCatamaran/ProjectCatamaran/ProjectCatamaran/FormCatamaran.resx new file mode 100644 index 0000000..d61dfd4 --- /dev/null +++ b/ProjectCatamaran/ProjectCatamaran/ProjectCatamaran/FormCatamaran.resx @@ -0,0 +1,153 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 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 + + + + + iVBORw0KGgoAAAANSUhEUgAAAB4AAAAeCAIAAAC0Ujn1AAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO + vwAADr8BOAVTJAAAAIVJREFUSEvtzFsKgDAMRFH3v+k6yBXsI22iUkF6PpOZ2ZJtcyDasqYLa7rwm2lK + QZQvyhPBW5g4TZwWgnH0T69NU75onIS4G7Xc9Gmh5EChYj6E6gjpytNpoi29nzBgIGT4blqYqfC2jRPC + WI6f7eY0jy5XSJg8cBrx5iS0K4Fo1JrOpLQD0c/CkunHhukAAAAASUVORK5CYII= + + + + + iVBORw0KGgoAAAANSUhEUgAAAB4AAAAeCAIAAAC0Ujn1AAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO + vwAADr8BOAVTJAAAAIVJREFUSEvtzFsKgDAMRFH3v+k6yBXsI22iUkF6PpOZ2ZJtcyDasqYLa7rwm2lK + QZQvyhPBW5g4TZwWgnH0T69NU75onIS4G7Xc9Gmh5EChYj6E6gjpytNpoi29nzBgIGT4blqYqfC2jRPC + WI6f7eY0jy5XSJg8cBrx5iS0K4Fo1JrOpLQD0c/CkunHhukAAAAASUVORK5CYII= + + + + + iVBORw0KGgoAAAANSUhEUgAAAB4AAAAeCAIAAAC0Ujn1AAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO + vwAADr8BOAVTJAAAAIdJREFUSEvtzFsOgCAMRFH3v2kkcjUFC6U+MCacP+jMLOE1c7rgmF42PDr0RtNu + wpelK8ekwKHJDjGW49Z0cTriXGckmKkgVPHRNANNRDXVG1ULac3d6YjCiX6g1I1abuw0cSfKQvlF0I++ + 8Nh0xMRu4HRE0ImyoHwdKDUR1czpwpwu/HE6hBWbVcKS8nHq8gAAAABJRU5ErkJggg== + + + + + iVBORw0KGgoAAAANSUhEUgAAAB4AAAAeCAIAAAC0Ujn1AAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO + vwAADr8BOAVTJAAAAIZJREFUSEvtzUkOgCAMQFHuf2lM4JMgMnSAuOHtbMs3xGNuuvFfOhR8a8zeUC2Y + iinSGTsBdTrjYopTAwJj3JmR6eHCidgbOz96FRZbkCyY7kI1YbQL1YTRFiQLpn70Kiw8KH2wNiPTw4UB + gTHLb1mvqNPsBBRppmKLB7ZoZnwmcdONY+kYH/QlwpJxqZGzAAAAAElFTkSuQmCC + + + \ No newline at end of file diff --git a/ProjectCatamaran/ProjectCatamaran/ProjectCatamaran/Program.cs b/ProjectCatamaran/ProjectCatamaran/ProjectCatamaran/Program.cs new file mode 100644 index 0000000..4d620b5 --- /dev/null +++ b/ProjectCatamaran/ProjectCatamaran/ProjectCatamaran/Program.cs @@ -0,0 +1,17 @@ +namespace ProjectCatamaran +{ + 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 FormCatamaran()); + } + } +} \ No newline at end of file diff --git a/ProjectCatamaran/ProjectCatamaran/ProjectCatamaran/ProjectCatamaran.csproj b/ProjectCatamaran/ProjectCatamaran/ProjectCatamaran/ProjectCatamaran.csproj new file mode 100644 index 0000000..244387d --- /dev/null +++ b/ProjectCatamaran/ProjectCatamaran/ProjectCatamaran/ProjectCatamaran.csproj @@ -0,0 +1,26 @@ + + + + WinExe + net7.0-windows + enable + true + enable + + + + + True + True + Resources.resx + + + + + + ResXFileCodeGenerator + Resources.Designer.cs + + + + \ No newline at end of file diff --git a/ProjectCatamaran/ProjectCatamaran/ProjectCatamaran/Properties/Resources.Designer.cs b/ProjectCatamaran/ProjectCatamaran/ProjectCatamaran/Properties/Resources.Designer.cs new file mode 100644 index 0000000..c6c9160 --- /dev/null +++ b/ProjectCatamaran/ProjectCatamaran/ProjectCatamaran/Properties/Resources.Designer.cs @@ -0,0 +1,73 @@ +//------------------------------------------------------------------------------ +// +// Этот код создан программой. +// Исполняемая версия:4.0.30319.42000 +// +// Изменения в этом файле могут привести к неправильной работе и будут потеряны в случае +// повторной генерации кода. +// +//------------------------------------------------------------------------------ + +namespace ProjectCatamaran.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("ProjectCatamaran.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 arrowLeft { + get { + object obj = ResourceManager.GetObject("arrowLeft", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + } +} diff --git a/ProjectCatamaran/ProjectCatamaran/ProjectCatamaran/Properties/Resources.resx b/ProjectCatamaran/ProjectCatamaran/ProjectCatamaran/Properties/Resources.resx new file mode 100644 index 0000000..6085a44 --- /dev/null +++ b/ProjectCatamaran/ProjectCatamaran/ProjectCatamaran/Properties/Resources.resx @@ -0,0 +1,124 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 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.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + \ No newline at end of file diff --git a/ProjectCatamaran/ProjectCatamaran/ProjectCatamaran/Resources/arrowLeft.png b/ProjectCatamaran/ProjectCatamaran/ProjectCatamaran/Resources/arrowLeft.png new file mode 100644 index 0000000000000000000000000000000000000000..33acee6fbe60d78c927929931ec7ab18721310a4 GIT binary patch literal 241 zcmeAS@N?(olHy`uVBq!ia0vp^av;pX1SGcvS$+jlEa{HEjtmSN`?>!lvI6;>1s;*b z3=DjSL74G){)!Z!;ABr1#}E(iw-+4w8Wea~1K-tWnixn-T<_4`$$h_X+e}u)eb4;k zYxHG>J81snO?ltyzG4sH#8h-m7K|z&F`hI^XG-A&vb>E22rh9 zhcZN0v0hg7n784>;_&3>E