diff --git a/lab0/lab0.sln b/lab0/Teplohod.sln similarity index 88% rename from lab0/lab0.sln rename to lab0/Teplohod.sln index 6fe4043..b7ed9a8 100644 --- a/lab0/lab0.sln +++ b/lab0/Teplohod.sln @@ -3,7 +3,7 @@ Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio Version 17 VisualStudioVersion = 17.8.34511.84 MinimumVisualStudioVersion = 10.0.40219.1 -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "lab0", "lab0\lab0.csproj", "{DE74B5DC-C345-4C04-91EE-0F0EB1D37838}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Teplohod", "lab0\Teplohod.csproj", "{DE74B5DC-C345-4C04-91EE-0F0EB1D37838}" EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution diff --git a/lab0/lab0/DirectionType.cs b/lab0/lab0/DirectionType.cs new file mode 100644 index 0000000..4a8b2fb --- /dev/null +++ b/lab0/lab0/DirectionType.cs @@ -0,0 +1,15 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace lab0; + +public enum DirectionType +{ + Up=1, + Down=2, + Left=3, + Right=4, +} diff --git a/lab0/lab0/DrawingTeplohod.cs b/lab0/lab0/DrawingTeplohod.cs new file mode 100644 index 0000000..cb59239 --- /dev/null +++ b/lab0/lab0/DrawingTeplohod.cs @@ -0,0 +1,188 @@ +using lab0; +using System.Drawing; + +namespace Teplohod; + +public class DrawingTeplohod +{ + /// + /// Класс-сущность + /// + public EntityTeplohod? EntityTeplohod { get; set; } + + /// + /// Ширина окна + /// + private int? _pictureWidth; + /// + /// Высота окна + /// + private int? _pictureHeight; + /// + /// Левая координата прорисовки теплохода + /// + private int? _startPosX; + /// + /// Верхняя кооридната прорисовки теплохода + /// + private int? _startPosY; + /// + /// Ширина прорисовки теплохода + /// + private readonly int _drawningTeplohodWidth = 150; + /// + /// Высота прорисовки теплохода + /// + private readonly int _drawningTeplohodHeight = 88; + /// + /// Инициализация свойств + /// + /// Скорость + /// Вес + /// Основной цвет + /// Дополнительный цвет + /// Признак наличия труб + /// Признак наличия топливных баков + public void Init(int speed, double weight, Color bodycolor, Color additionalcolor, bool pipes, bool fueltank) + { + EntityTeplohod = new EntityTeplohod(); + EntityTeplohod.Init(speed, weight, bodycolor, additionalcolor, pipes, fueltank); + _pictureWidth = null; + _pictureHeight = null; + _startPosX = null; + _startPosY = null; + } + + /// + /// Установка границ поля + /// + /// Ширина поля + /// Высота поля + /// true - границы заданы, false - проверка не пройдена, нельзя разместить объект в этих размерах + public bool SetPictureSize(int width, int height) + { + // TODO проверка, что объект "влезает" в размеры поля + // если влезает, сохраняем границы и корректируем позицию объекта, если она была уже установлена + _pictureWidth = width; + _pictureHeight = height; + return true; + } + + /// + /// Установка позиции + /// + /// Координата X + /// Координата Y + public void SetPosition(int x, int y) + { + if (!_pictureHeight.HasValue || !_pictureWidth.HasValue) + { + return; + } + // TODO если при установке объекта в эти координаты, он будет "выходить" за границы формы + // то надо изменить координаты, чтобы он оставался в этих границах + _startPosX = x; + _startPosY = y; + } + + /// + /// Изменение направления перемещения + /// + /// Направление + /// true - перемещене выполнено, false - перемещение невозможно + public bool MoveTransport(DirectionType direction) + { + if (EntityTeplohod == null || !_startPosX.HasValue || !_startPosY.HasValue) + { + return false; + } + switch (direction) + { + //влево + case DirectionType.Left: + if (_startPosX.Value - EntityTeplohod.Step > 0) + { + _startPosX -= (int)EntityTeplohod.Step; + } + return true; + //вверх + case DirectionType.Up: + if (_startPosY.Value - EntityTeplohod.Step > 0) + { + _startPosY -= (int)EntityTeplohod.Step; + } + return true; + // вправо + case DirectionType.Right: + if (_startPosX.Value + EntityTeplohod.Step + _drawningTeplohodWidth < _pictureWidth) + { + _startPosX += (int)EntityTeplohod.Step; + } + return true; + //вниз + case DirectionType.Down: + if (_startPosY.Value + EntityTeplohod.Step + _drawningTeplohodHeight < _pictureHeight) + { + _startPosY += (int)EntityTeplohod.Step; + } + return true; + default: + return false; + } + } + + + /// + /// Прорисовка объекта + /// + /// + public void DrawTransport(Graphics g) + { + if (EntityTeplohod == null || !_startPosX.HasValue || + !_startPosY.HasValue) + { + return; + } + + Pen pen = new(Color.Black); + Brush additionalBrush = new SolidBrush(EntityTeplohod.AdditionalColor); + Brush bodybrush = new SolidBrush(EntityTeplohod.BodyColor); + + + //корпус + g.DrawRectangle(pen, new Rectangle(_startPosX.Value + 30, _startPosY.Value + 40, 90, 10)); + g.FillRectangle(bodybrush, _startPosX.Value + 30, _startPosY.Value + 40, 90, 10); + g.DrawPolygon(pen, new[]{ + new Point(_startPosX.Value, _startPosY.Value + 50), + new Point(_startPosX.Value + 150, _startPosY.Value + 50), + new Point(_startPosX.Value + 130, _startPosY.Value + 80), + new Point(_startPosX.Value + 20, _startPosY.Value + 80) + }); + g.FillPolygon(bodybrush, new[]{ + new Point(_startPosX.Value, _startPosY.Value + 50), + new Point(_startPosX.Value + 150, _startPosY.Value + 50), + new Point(_startPosX.Value + 130, _startPosY.Value + 80), + new Point(_startPosX.Value + 20, _startPosY.Value + 80) + }); + g.DrawLine(pen, _startPosX.Value, _startPosY.Value + 50, _startPosX.Value + 150, _startPosY.Value + 50); + //трубы + if (EntityTeplohod.Pipes) + { + g.DrawRectangle(pen, new Rectangle(_startPosX.Value + 5, _startPosY.Value, 15, 50)); + g.FillRectangle(additionalBrush, _startPosX.Value + 5, _startPosY.Value, 15, 50); + } + //топливный бак + if (EntityTeplohod.FuelTank) + { + Brush brRed = new SolidBrush(Color.Red); + g.DrawRectangle(pen, new Rectangle(_startPosX.Value + 35, _startPosY.Value + 5, 80, 30)); + g.FillRectangle(brRed, _startPosX.Value + 35, _startPosY.Value + 5, 80, 30); + } + g.DrawLine(pen, _startPosX.Value + 35, _startPosY.Value + 35, _startPosX.Value + 30, _startPosY.Value + 40); + g.DrawLine(pen, _startPosX.Value + 115, _startPosY.Value + 35, _startPosX.Value + 120, _startPosY.Value + 40); + //якорь + g.DrawLine(pen, _startPosX.Value + 25, _startPosY.Value + 55, _startPosX.Value + 25, _startPosY.Value + 75); + g.DrawLine(pen, _startPosX.Value + 17, _startPosY.Value + 65, _startPosX.Value + 33, _startPosY.Value + 65); + g.DrawLine(pen, _startPosX.Value + 23, _startPosY.Value + 75, _startPosX.Value + 27, _startPosY.Value + 75); + } +} diff --git a/lab0/lab0/EntityTeplohod.cs b/lab0/lab0/EntityTeplohod.cs new file mode 100644 index 0000000..cddd6b7 --- /dev/null +++ b/lab0/lab0/EntityTeplohod.cs @@ -0,0 +1,29 @@ +namespace lab0; + +public class EntityTeplohod +{ + 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 Pipes { get; private set; } + + public bool FuelTank { get; private set; } + + + public double Step => Speed * 100 / Weight; + + public void Init(int speed, double weight, Color bodycolor, Color additionalcolor, bool pipes, bool fueltank) + { + Speed = speed; + Weight = weight; + BodyColor = bodycolor; + AdditionalColor = additionalcolor; + Pipes = pipes; + FuelTank = fueltank; + } +} diff --git a/lab0/lab0/Form1.Designer.cs b/lab0/lab0/Form1.Designer.cs deleted file mode 100644 index fb6c2d7..0000000 --- a/lab0/lab0/Form1.Designer.cs +++ /dev/null @@ -1,39 +0,0 @@ -namespace lab0 -{ - 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 - } -} diff --git a/lab0/lab0/Form1.cs b/lab0/lab0/Form1.cs deleted file mode 100644 index 6266590..0000000 --- a/lab0/lab0/Form1.cs +++ /dev/null @@ -1,10 +0,0 @@ -namespace lab0 -{ - public partial class Form1 : Form - { - public Form1() - { - InitializeComponent(); - } - } -} diff --git a/lab0/lab0/FormTeplohod.Designer.cs b/lab0/lab0/FormTeplohod.Designer.cs new file mode 100644 index 0000000..aedc24a --- /dev/null +++ b/lab0/lab0/FormTeplohod.Designer.cs @@ -0,0 +1,134 @@ +namespace Teplohod +{ + partial class FormTeplohod + { + /// + /// 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() + { + pictureBoxTeplohod = new PictureBox(); + buttonCreate = new Button(); + buttonLeft = new Button(); + buttonUp = new Button(); + buttonRight = new Button(); + buttonDown = new Button(); + ((System.ComponentModel.ISupportInitialize)pictureBoxTeplohod).BeginInit(); + SuspendLayout(); + // + // pictureBoxTeplohod + // + pictureBoxTeplohod.Dock = DockStyle.Fill; + pictureBoxTeplohod.Location = new Point(0, 0); + pictureBoxTeplohod.Name = "pictureBoxTeplohod"; + pictureBoxTeplohod.Size = new Size(882, 553); + pictureBoxTeplohod.TabIndex = 0; + pictureBoxTeplohod.TabStop = false; + // + // buttonCreate + // + buttonCreate.Anchor = AnchorStyles.Bottom | AnchorStyles.Left; + buttonCreate.Location = new Point(12, 512); + buttonCreate.Name = "buttonCreate"; + buttonCreate.Size = new Size(94, 29); + buttonCreate.TabIndex = 1; + buttonCreate.Text = "создать"; + buttonCreate.UseVisualStyleBackColor = true; + buttonCreate.Click += buttonCreate_Click; + // + // buttonLeft + // + buttonLeft.Anchor = AnchorStyles.Bottom | AnchorStyles.Right; + buttonLeft.BackgroundImage = Properties.Resources.влево; + buttonLeft.BackgroundImageLayout = ImageLayout.Stretch; + buttonLeft.Location = new Point(738, 500); + buttonLeft.Name = "buttonLeft"; + buttonLeft.Size = new Size(40, 40); + buttonLeft.TabIndex = 2; + buttonLeft.UseVisualStyleBackColor = true; + buttonLeft.Click += ButtonMove_Click; + // + // buttonUp + // + buttonUp.Anchor = AnchorStyles.Bottom | AnchorStyles.Right; + buttonUp.BackgroundImage = Properties.Resources.вверх; + buttonUp.BackgroundImageLayout = ImageLayout.Stretch; + buttonUp.Location = new Point(784, 454); + buttonUp.Name = "buttonUp"; + buttonUp.Size = new Size(40, 40); + buttonUp.TabIndex = 3; + buttonUp.UseVisualStyleBackColor = true; + buttonUp.Click += ButtonMove_Click; + // + // buttonRight + // + buttonRight.Anchor = AnchorStyles.Bottom | AnchorStyles.Right; + buttonRight.BackgroundImage = Properties.Resources.вправо; + buttonRight.BackgroundImageLayout = ImageLayout.Stretch; + buttonRight.Location = new Point(830, 501); + buttonRight.Name = "buttonRight"; + buttonRight.Size = new Size(40, 40); + buttonRight.TabIndex = 4; + buttonRight.UseVisualStyleBackColor = true; + buttonRight.Click += ButtonMove_Click; + // + // buttonDown + // + buttonDown.Anchor = AnchorStyles.Bottom | AnchorStyles.Right; + buttonDown.BackgroundImage = Properties.Resources.вниз; + buttonDown.BackgroundImageLayout = ImageLayout.Stretch; + buttonDown.Location = new Point(784, 500); + buttonDown.Name = "buttonDown"; + buttonDown.Size = new Size(40, 40); + buttonDown.TabIndex = 5; + buttonDown.UseVisualStyleBackColor = true; + buttonDown.Click += ButtonMove_Click; + // + // FormTeplohod + // + AutoScaleDimensions = new SizeF(8F, 20F); + AutoScaleMode = AutoScaleMode.Font; + ClientSize = new Size(882, 553); + Controls.Add(buttonDown); + Controls.Add(buttonRight); + Controls.Add(buttonUp); + Controls.Add(buttonLeft); + Controls.Add(buttonCreate); + Controls.Add(pictureBoxTeplohod); + Name = "FormTeplohod"; + Text = "Теплоход"; + ((System.ComponentModel.ISupportInitialize)pictureBoxTeplohod).EndInit(); + ResumeLayout(false); + } + + #endregion + + private PictureBox pictureBoxTeplohod; + private Button buttonCreate; + private Button buttonLeft; + private Button buttonUp; + private Button buttonRight; + private Button buttonDown; + } +} \ No newline at end of file diff --git a/lab0/lab0/FormTeplohod.cs b/lab0/lab0/FormTeplohod.cs new file mode 100644 index 0000000..dc1a307 --- /dev/null +++ b/lab0/lab0/FormTeplohod.cs @@ -0,0 +1,102 @@ +using lab0; +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 Teplohod; + +public partial class FormTeplohod : Form +{ + /// + /// Поле-объект для прорисовки объекта + /// + private DrawingTeplohod? _drawingTeplohod; + + + public FormTeplohod() + { + InitializeComponent(); + } + + + /// + /// Метод прорисовки теплохода + /// + + private void Draw() + { + if (_drawingTeplohod == null) + { + return; + } + Bitmap bmp = new(pictureBoxTeplohod.Width, pictureBoxTeplohod.Height); + Graphics gr = Graphics.FromImage(bmp); + _drawingTeplohod.DrawTransport(gr); + pictureBoxTeplohod.Image = bmp; + } + + + + /// + /// Обработка нажатия кнопки "Создать" + /// + /// + /// + private void buttonCreate_Click(object sender, EventArgs e) + { + Random random = new(); + _drawingTeplohod = new DrawingTeplohod(); + _drawingTeplohod.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))); + _drawingTeplohod.SetPictureSize(pictureBoxTeplohod.Width, pictureBoxTeplohod.Height); + _drawingTeplohod.SetPosition(random.Next(10, 100), random.Next(10, 100)); + Draw(); + } + + /// + /// Перемещение объекта по форме (нажатие кнопок навигации) + /// + /// + /// + private void ButtonMove_Click(object sender, EventArgs e) + { + if (_drawingTeplohod == null) + { + return; + } + string name = ((Button)sender)?.Name ?? string.Empty; + bool result = false; + switch (name) + { + case "buttonUp": + result = + _drawingTeplohod.MoveTransport(DirectionType.Up); + break; + case "buttonDown": + result = + _drawingTeplohod.MoveTransport(DirectionType.Down); + break; + case "buttonLeft": + result = + _drawingTeplohod.MoveTransport(DirectionType.Left); + break; + case "buttonRight": + result = + _drawingTeplohod.MoveTransport(DirectionType.Right); + break; + } + if (result) + { + Draw(); + } + } +} diff --git a/lab0/lab0/FormTeplohod.resx b/lab0/lab0/FormTeplohod.resx new file mode 100644 index 0000000..af32865 --- /dev/null +++ b/lab0/lab0/FormTeplohod.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 + + \ No newline at end of file diff --git a/lab0/lab0/Program.cs b/lab0/lab0/Program.cs index 9095146..a25cab9 100644 --- a/lab0/lab0/Program.cs +++ b/lab0/lab0/Program.cs @@ -1,4 +1,4 @@ -namespace lab0 +namespace Teplohod { internal static class Program { @@ -11,7 +11,7 @@ namespace lab0 // 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 FormTeplohod()); } } } \ No newline at end of file diff --git a/lab0/lab0/Properties/Resources.Designer.cs b/lab0/lab0/Properties/Resources.Designer.cs new file mode 100644 index 0000000..256d9bb --- /dev/null +++ b/lab0/lab0/Properties/Resources.Designer.cs @@ -0,0 +1,103 @@ +//------------------------------------------------------------------------------ +// +// Этот код создан программой. +// Исполняемая версия:4.0.30319.42000 +// +// Изменения в этом файле могут привести к неправильной работе и будут потеряны в случае +// повторной генерации кода. +// +//------------------------------------------------------------------------------ + +namespace Teplohod.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("Teplohod.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 вверх { + get { + object obj = ResourceManager.GetObject("вверх", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Поиск локализованного ресурса типа System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap влево { + get { + object obj = ResourceManager.GetObject("влево", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Поиск локализованного ресурса типа System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap вниз { + get { + object obj = ResourceManager.GetObject("вниз", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Поиск локализованного ресурса типа System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap вправо { + get { + object obj = ResourceManager.GetObject("вправо", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + } +} diff --git a/lab0/lab0/Properties/Resources.resx b/lab0/lab0/Properties/Resources.resx new file mode 100644 index 0000000..2bc00c7 --- /dev/null +++ b/lab0/lab0/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\вверх.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + ..\Resources\влево.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + ..\Resources\вниз.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + ..\Resources\вправо.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + \ No newline at end of file diff --git a/lab0/lab0/Resources/вверх.png b/lab0/lab0/Resources/вверх.png new file mode 100644 index 0000000..2b1766a Binary files /dev/null and b/lab0/lab0/Resources/вверх.png differ diff --git a/lab0/lab0/Resources/влево.png b/lab0/lab0/Resources/влево.png new file mode 100644 index 0000000..fc9120e Binary files /dev/null and b/lab0/lab0/Resources/влево.png differ diff --git a/lab0/lab0/Resources/вниз.png b/lab0/lab0/Resources/вниз.png new file mode 100644 index 0000000..fcea8dc Binary files /dev/null and b/lab0/lab0/Resources/вниз.png differ diff --git a/lab0/lab0/Resources/вправо.png b/lab0/lab0/Resources/вправо.png new file mode 100644 index 0000000..61255f3 Binary files /dev/null and b/lab0/lab0/Resources/вправо.png differ diff --git a/lab0/lab0/Teplohod.csproj b/lab0/lab0/Teplohod.csproj new file mode 100644 index 0000000..af03d74 --- /dev/null +++ b/lab0/lab0/Teplohod.csproj @@ -0,0 +1,26 @@ + + + + WinExe + net8.0-windows + enable + true + enable + + + + + True + True + Resources.resx + + + + + + ResXFileCodeGenerator + Resources.Designer.cs + + + + \ No newline at end of file diff --git a/lab0/lab0/lab0.csproj b/lab0/lab0/lab0.csproj deleted file mode 100644 index 663fdb8..0000000 --- a/lab0/lab0/lab0.csproj +++ /dev/null @@ -1,11 +0,0 @@ - - - - WinExe - net8.0-windows - enable - true - enable - - - \ No newline at end of file diff --git a/разное/вверх.png b/разное/вверх.png new file mode 100644 index 0000000..2b1766a Binary files /dev/null and b/разное/вверх.png differ diff --git a/разное/влево.png b/разное/влево.png new file mode 100644 index 0000000..fc9120e Binary files /dev/null and b/разное/влево.png differ diff --git a/разное/вниз.png b/разное/вниз.png new file mode 100644 index 0000000..fcea8dc Binary files /dev/null and b/разное/вниз.png differ diff --git a/разное/вправо.png b/разное/вправо.png new file mode 100644 index 0000000..61255f3 Binary files /dev/null and b/разное/вправо.png differ