diff --git a/ProjectTrolleybus/ProjectTrolleybus/DirectionType.cs b/ProjectTrolleybus/ProjectTrolleybus/DirectionType.cs
new file mode 100644
index 0000000..3d82936
--- /dev/null
+++ b/ProjectTrolleybus/ProjectTrolleybus/DirectionType.cs
@@ -0,0 +1,27 @@
+namespace ProjectTrolleybus;
+
+///
+/// Направление перемещения
+///
+public enum DirectionType
+{
+ ///
+ /// Вверх
+ ///
+ Up = 1,
+
+ ///
+ /// Вниз
+ ///
+ Down = 2,
+
+ ///
+ /// Влево
+ ///
+ Left = 3,
+
+ ///
+ /// Вправо
+ ///
+ Right = 4
+}
diff --git a/ProjectTrolleybus/ProjectTrolleybus/DrawningTrolleybus.cs b/ProjectTrolleybus/ProjectTrolleybus/DrawningTrolleybus.cs
new file mode 100644
index 0000000..0a7254b
--- /dev/null
+++ b/ProjectTrolleybus/ProjectTrolleybus/DrawningTrolleybus.cs
@@ -0,0 +1,254 @@
+namespace ProjectTrolleybus;
+
+///
+/// Класс, отвечающий за прорисовку и перемещение объекта-сущности
+///
+public class DrawningTrolleybus
+{
+ ///
+ /// Класс-сущность
+ ///
+ public EntityTrolleybus? EntityTrolleybus { get; private set; }
+
+ ///
+ /// Ширина окна
+ ///
+ private int? _pictureWidth;
+
+ ///
+ /// Высота окна
+ ///
+ private int? _pictureHeight;
+
+ ///
+ /// Левая координата прорисовки транспорта
+ ///
+ private int? _startPosX;
+
+ ///
+ /// Верхняя координата прорисовки транспорта
+ ///
+ private int? _startPosY;
+
+ ///
+ /// Ширина прорисовки транспорта
+ ///
+ private readonly int _drawningVehicleWidth = 100;
+
+ ///
+ /// Высота прорисовки транспорта
+ ///
+ private readonly int _drawningVehicleHeight = 48;
+
+ ///
+ /// Инициализация свойств
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ public void Init(int speed, double weight, Color bodyColor, Color additionalColor, bool batteryCompartment, bool horns)
+ {
+ EntityTrolleybus = new EntityTrolleybus();
+ EntityTrolleybus.Init(speed, weight, bodyColor, additionalColor, batteryCompartment, horns);
+ _pictureHeight = null;
+ _pictureWidth = null;
+ _startPosX = null;
+ _startPosY = null;
+ }
+
+ ///
+ /// Установка границ поля
+ ///
+ /// Ширина поля
+ /// Высота поля
+ /// true - границы заданы, false - проверка не пройдена, нельзя разместить объект в этих размерах
+ public bool SetPictureSize(int width, int height)
+ {
+ //TODO проверка, что объект "влезает" в размеры поля
+ //если влезает, сохраняем границы и корректируем позицию объекта, если она уже была установлена
+ if (_drawningVehicleWidth > width || _drawningVehicleHeight > height)
+ {
+ return false;
+ }
+
+ _pictureWidth = width;
+ _pictureHeight = height;
+ if (_startPosX.HasValue || _startPosY.HasValue)
+ {
+ if (_startPosX + _drawningVehicleWidth > _pictureWidth)
+ {
+ _startPosX = _pictureWidth - _drawningVehicleWidth;
+ }
+ else if (_startPosX < 0) _startPosX = 0;
+ if (_startPosY + _drawningVehicleHeight > _pictureHeight)
+ {
+ _startPosY = _pictureHeight - _drawningVehicleHeight;
+ }
+ else if (_startPosY < 0) _startPosY = 0;
+ }
+ return true;
+ }
+
+ ///
+ /// Установка позиции
+ ///
+ /// Координата X
+ /// Координата Y
+ public void SetPosition(int x, int y, int width, int height)
+ {
+ if (!_pictureWidth.HasValue || !_pictureHeight.HasValue)
+ {
+ return;
+ }
+ //TODO если при установке объекта в эти координаты, он будет "выходить" за границы формы
+ //то надо изменить координаты, чтобы он оставался в этих границах
+ if (x + _drawningVehicleWidth > _pictureWidth)
+ {
+ _startPosX = _pictureWidth - _drawningVehicleWidth;
+ }
+ else if (x < 0) _startPosX = 0;
+ else _startPosX = x;
+
+ if (y + _drawningVehicleHeight > _pictureHeight)
+ {
+ _startPosY = _pictureHeight - _drawningVehicleHeight;
+ }
+ else if (y < 0) _startPosY = 0;
+ else _startPosY = y;
+ }
+
+
+ ///
+ /// Изменение направления движения
+ ///
+ ///
+ ///
+ public bool MoveVehicle(DirectionType direction)
+ {
+ if (EntityTrolleybus == null || !_startPosX.HasValue || !_startPosY.HasValue)
+ {
+ return false;
+ }
+
+ switch (direction)
+ {
+ // влево
+ case DirectionType.Left:
+ if (_startPosX.Value - EntityTrolleybus.Step > 0)
+ {
+ _startPosX -= (int)EntityTrolleybus.Step;
+ }
+ return true;
+ // вверх
+ case DirectionType.Up:
+ if (_startPosY.Value - EntityTrolleybus.Step > 0)
+ {
+ _startPosY -= (int)EntityTrolleybus.Step;
+ }
+ return true;
+ // вправо
+ case DirectionType.Right:
+ {
+ if (_startPosX.Value + _drawningVehicleWidth + EntityTrolleybus.Step < _pictureWidth)
+ {
+ _startPosX += (int)EntityTrolleybus.Step;
+ }
+ }
+ return true;
+ // вниз
+ case DirectionType.Down:
+ {
+ if (_startPosY.Value + _drawningVehicleHeight + EntityTrolleybus.Step < _pictureHeight)
+ {
+ _startPosY += (int)EntityTrolleybus.Step;
+ }
+ }
+ return true;
+ default:
+ return false;
+ }
+ }
+
+ ///
+ /// Прорисовка объекта
+ ///
+ ///
+ public void DrawTransport(Graphics g)
+ {
+ if (EntityTrolleybus == null || !_startPosX.HasValue || !_startPosY.HasValue)
+ {
+ return;
+ }
+
+ Pen pen = new(Color.Black);
+
+ //Колёса
+ pen.Width = 2;
+ g.DrawEllipse(pen, _startPosX.Value + 20, _startPosY.Value + 36, 12, 12);
+ g.DrawEllipse(pen, _startPosX.Value + 80, _startPosY.Value + 36, 12, 12);
+ pen.Width = 1;
+ Brush brBlackWheel = new SolidBrush(Color.Black);
+ g.FillEllipse(brBlackWheel, _startPosX.Value + 20, _startPosY.Value + 36, 12, 12);
+ g.FillEllipse(brBlackWheel, _startPosX.Value + 80, _startPosY.Value + 36, 12, 12);
+ Brush brYelWheel = new SolidBrush(Color.Goldenrod);
+ g.FillEllipse(brYelWheel, _startPosX.Value + 22, _startPosY.Value + 38, 8, 8);
+ g.FillEllipse(brYelWheel, _startPosX.Value + 82, _startPosY.Value + 38, 8, 8);
+
+ //Кузов
+ Brush br = new SolidBrush(EntityTrolleybus.BodyColor);
+ g.FillRectangle(br, _startPosX.Value + 11, _startPosY.Value + 16, 89, 24);
+
+ //Границы Автомобиля
+ g.DrawRectangle(pen, _startPosX.Value + 10, _startPosY.Value + 15, 90, 25);
+ g.DrawRectangle(pen, _startPosX.Value + 36, _startPosY.Value + 25, 10, 15);
+ g.DrawRectangle(pen, _startPosX.Value + 88, _startPosY.Value + 19, 12, 12);
+ pen.Width = 2;
+ g.DrawEllipse(pen, _startPosX.Value + 12, _startPosY.Value + 20, 8, 10);
+ g.DrawEllipse(pen, _startPosX.Value + 24, _startPosY.Value + 20, 8, 10);
+ g.DrawEllipse(pen, _startPosX.Value + 50, _startPosY.Value + 20, 8, 10);
+ g.DrawEllipse(pen, _startPosX.Value + 62, _startPosY.Value + 20, 8, 10);
+ g.DrawEllipse(pen, _startPosX.Value + 74, _startPosY.Value + 20, 8, 10);
+ pen.Width = 1;
+
+ //Стекла и кабина
+ Brush brBlue = new SolidBrush(Color.LightBlue);
+ g.FillRectangle(brBlue, _startPosX.Value + 89, _startPosY.Value + 20, 11, 11);
+ g.FillEllipse(brBlue, _startPosX.Value + 12, _startPosY.Value + 20, 8, 10);
+ g.FillEllipse(brBlue, _startPosX.Value + 24, _startPosY.Value + 20, 8, 10);
+ g.FillEllipse(brBlue, _startPosX.Value + 50, _startPosY.Value + 20, 8, 10);
+ g.FillEllipse(brBlue, _startPosX.Value + 62, _startPosY.Value + 20, 8, 10);
+ g.FillEllipse(brBlue, _startPosX.Value + 74, _startPosY.Value + 20, 8, 10);
+
+ //Дверь
+ Brush brBlack = new SolidBrush(Color.LightGray);
+ g.FillRectangle(brBlack, _startPosX.Value + 37, _startPosY.Value + 26, 9, 14);
+
+ Brush additBrush = new SolidBrush(EntityTrolleybus.AdditionalColor);
+
+ // "Рога" для проводов
+ if (EntityTrolleybus.Horns)
+ {
+ pen.Width = 2;
+ g.DrawLine(pen, _startPosX.Value + 77, _startPosY.Value + 15, _startPosX.Value + 52, _startPosY.Value + 2);
+ pen.Width = 1;
+ g.DrawRectangle(pen, _startPosX.Value + 34, _startPosY.Value, 20, 5);
+
+ g.FillRectangle(additBrush, _startPosX.Value + 35, _startPosY.Value + 1, 19, 4);
+
+ }
+
+ // Отсек под батареи
+ if (EntityTrolleybus.BatteryCompartment)
+ {
+ g.DrawRectangle(pen, _startPosX.Value, _startPosY.Value + 24, 10, 12);
+
+ g.FillRectangle(additBrush, _startPosX.Value + 1, _startPosY.Value + 25, 9, 11);
+ }
+
+ }
+
+
+}
diff --git a/ProjectTrolleybus/ProjectTrolleybus/EntityTrolleybus.cs b/ProjectTrolleybus/ProjectTrolleybus/EntityTrolleybus.cs
new file mode 100644
index 0000000..20e254b
--- /dev/null
+++ b/ProjectTrolleybus/ProjectTrolleybus/EntityTrolleybus.cs
@@ -0,0 +1,57 @@
+namespace ProjectTrolleybus;
+///
+/// Класс-Сущность "Троллейбус"
+///
+public class EntityTrolleybus
+{
+ ///
+ /// Скорость
+ ///
+ 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 BatteryCompartment { get; private set; }
+
+ ///
+ /// Признак (опция) наличия "Рогов" для подключения проводов
+ ///
+ public bool Horns { get; private set; }
+
+ public double Step => Speed * 100 / Weight;
+
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ public void Init(int speed, double weight, Color bodyColor, Color additionalColor, bool batteryCompartment, bool horns)
+ {
+ Speed = speed;
+ Weight = weight;
+ BodyColor = bodyColor;
+ AdditionalColor = additionalColor;
+ BatteryCompartment = batteryCompartment;
+ Horns = horns;
+ }
+}
diff --git a/ProjectTrolleybus/ProjectTrolleybus/FormTrolleybus.Designer.cs b/ProjectTrolleybus/ProjectTrolleybus/FormTrolleybus.Designer.cs
new file mode 100644
index 0000000..11c468d
--- /dev/null
+++ b/ProjectTrolleybus/ProjectTrolleybus/FormTrolleybus.Designer.cs
@@ -0,0 +1,134 @@
+namespace ProjectTrolleybus
+{
+ partial class FormTrolleybus
+ {
+ ///
+ /// 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()
+ {
+ pictureBoxTrolleybus = new PictureBox();
+ buttonCreateTrolleybus = new Button();
+ buttonLeft = new Button();
+ buttonDown = new Button();
+ buttonRight = new Button();
+ buttonUp = new Button();
+ ((System.ComponentModel.ISupportInitialize)pictureBoxTrolleybus).BeginInit();
+ SuspendLayout();
+ //
+ // pictureBoxTrolleybus
+ //
+ pictureBoxTrolleybus.Dock = DockStyle.Fill;
+ pictureBoxTrolleybus.Location = new Point(0, 0);
+ pictureBoxTrolleybus.Name = "pictureBoxTrolleybus";
+ pictureBoxTrolleybus.Size = new Size(800, 450);
+ pictureBoxTrolleybus.TabIndex = 0;
+ pictureBoxTrolleybus.TabStop = false;
+ //
+ // buttonCreateTrolleybus
+ //
+ buttonCreateTrolleybus.Anchor = AnchorStyles.Bottom | AnchorStyles.Left;
+ buttonCreateTrolleybus.Location = new Point(22, 406);
+ buttonCreateTrolleybus.Name = "buttonCreateTrolleybus";
+ buttonCreateTrolleybus.Size = new Size(75, 23);
+ buttonCreateTrolleybus.TabIndex = 1;
+ buttonCreateTrolleybus.Text = "Создать";
+ buttonCreateTrolleybus.UseVisualStyleBackColor = true;
+ buttonCreateTrolleybus.Click += ButtonCreateTrolleybus_Click;
+ //
+ // buttonLeft
+ //
+ buttonLeft.Anchor = AnchorStyles.Bottom | AnchorStyles.Right;
+ buttonLeft.BackgroundImage = Properties.Resources.play2;
+ buttonLeft.BackgroundImageLayout = ImageLayout.Stretch;
+ buttonLeft.Location = new Point(670, 394);
+ 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 = Properties.Resources.play1;
+ buttonDown.BackgroundImageLayout = ImageLayout.Stretch;
+ buttonDown.Location = new Point(712, 394);
+ buttonDown.Name = "buttonDown";
+ buttonDown.Size = new Size(35, 35);
+ buttonDown.TabIndex = 3;
+ buttonDown.UseVisualStyleBackColor = true;
+ buttonDown.Click += ButtonMove_Click;
+ //
+ // buttonRight
+ //
+ buttonRight.Anchor = AnchorStyles.Bottom | AnchorStyles.Right;
+ buttonRight.BackgroundImage = Properties.Resources.play;
+ buttonRight.BackgroundImageLayout = ImageLayout.Stretch;
+ buttonRight.Location = new Point(753, 394);
+ buttonRight.Name = "buttonRight";
+ buttonRight.Size = new Size(35, 35);
+ buttonRight.TabIndex = 4;
+ buttonRight.UseVisualStyleBackColor = true;
+ buttonRight.Click += ButtonMove_Click;
+ //
+ // buttonUp
+ //
+ buttonUp.Anchor = AnchorStyles.Bottom | AnchorStyles.Right;
+ buttonUp.BackgroundImage = Properties.Resources.play3;
+ buttonUp.BackgroundImageLayout = ImageLayout.Stretch;
+ buttonUp.Location = new Point(712, 353);
+ buttonUp.Name = "buttonUp";
+ buttonUp.Size = new Size(35, 35);
+ buttonUp.TabIndex = 5;
+ buttonUp.UseVisualStyleBackColor = true;
+ buttonUp.Click += ButtonMove_Click;
+ //
+ // FormTrolleybus
+ //
+ AutoScaleDimensions = new SizeF(7F, 15F);
+ AutoScaleMode = AutoScaleMode.Font;
+ ClientSize = new Size(800, 450);
+ Controls.Add(buttonUp);
+ Controls.Add(buttonRight);
+ Controls.Add(buttonDown);
+ Controls.Add(buttonLeft);
+ Controls.Add(buttonCreateTrolleybus);
+ Controls.Add(pictureBoxTrolleybus);
+ Name = "FormTrolleybus";
+ Text = "Троллейбус";
+ ((System.ComponentModel.ISupportInitialize)pictureBoxTrolleybus).EndInit();
+ ResumeLayout(false);
+ }
+
+ #endregion
+
+ private PictureBox pictureBoxTrolleybus;
+ private Button buttonCreateTrolleybus;
+ private Button buttonLeft;
+ private Button buttonDown;
+ private Button buttonRight;
+ private Button buttonUp;
+ }
+}
\ No newline at end of file
diff --git a/ProjectTrolleybus/ProjectTrolleybus/FormTrolleybus.cs b/ProjectTrolleybus/ProjectTrolleybus/FormTrolleybus.cs
new file mode 100644
index 0000000..92d3b4f
--- /dev/null
+++ b/ProjectTrolleybus/ProjectTrolleybus/FormTrolleybus.cs
@@ -0,0 +1,67 @@
+namespace ProjectTrolleybus
+{
+ public partial class FormTrolleybus : Form
+ {
+ private DrawningTrolleybus? _drawningTrolleybus;
+
+ public FormTrolleybus()
+ {
+ InitializeComponent();
+ }
+
+ private void Draw()
+ {
+ Bitmap bmp = new(pictureBoxTrolleybus.Width, pictureBoxTrolleybus.Height);
+ Graphics gr = Graphics.FromImage(bmp);
+ _drawningTrolleybus.DrawTransport(gr);
+ pictureBoxTrolleybus.Image = bmp;
+ }
+
+ private void ButtonCreateTrolleybus_Click(object sender, EventArgs e)
+ {
+
+ Random random = new();
+ _drawningTrolleybus = new DrawningTrolleybus();
+ _drawningTrolleybus.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)));
+ _drawningTrolleybus.SetPictureSize(pictureBoxTrolleybus.Width, pictureBoxTrolleybus.Height);
+ _drawningTrolleybus.SetPosition(random.Next(10, 100), random.Next(10, 100), pictureBoxTrolleybus.Width, pictureBoxTrolleybus.Height);
+ Draw();
+ }
+
+ private void ButtonMove_Click(object sender, EventArgs e)
+ {
+ if (_drawningTrolleybus == null)
+ {
+ return;
+ }
+
+ string name = ((Button)sender)?.Name ?? string.Empty;
+ bool result = false;
+ switch (name)
+ {
+ case "buttonUp":
+ result = _drawningTrolleybus.MoveVehicle(DirectionType.Up);
+ break;
+ case "buttonDown":
+ result = _drawningTrolleybus.MoveVehicle(DirectionType.Down);
+ break;
+ case "buttonLeft":
+ result = _drawningTrolleybus.MoveVehicle(DirectionType.Left);
+ break;
+ case "buttonRight":
+ result = _drawningTrolleybus.MoveVehicle(DirectionType.Right);
+ break;
+ }
+
+ if (result)
+ {
+ Draw();
+ }
+ }
+ }
+}
+
+
diff --git a/ProjectTrolleybus/ProjectTrolleybus/FormTrolleybus.resx b/ProjectTrolleybus/ProjectTrolleybus/FormTrolleybus.resx
new file mode 100644
index 0000000..af32865
--- /dev/null
+++ b/ProjectTrolleybus/ProjectTrolleybus/FormTrolleybus.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/ProjectTrolleybus/ProjectTrolleybus/Program.cs b/ProjectTrolleybus/ProjectTrolleybus/Program.cs
index 804f2cd..8a49dfe 100644
--- a/ProjectTrolleybus/ProjectTrolleybus/Program.cs
+++ b/ProjectTrolleybus/ProjectTrolleybus/Program.cs
@@ -11,7 +11,7 @@ namespace ProjectTrolleybus
// 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 FormTrolleybus());
}
}
}
\ No newline at end of file
diff --git a/ProjectTrolleybus/ProjectTrolleybus/ProjectTrolleybus.csproj b/ProjectTrolleybus/ProjectTrolleybus/ProjectTrolleybus.csproj
index 663fdb8..af03d74 100644
--- a/ProjectTrolleybus/ProjectTrolleybus/ProjectTrolleybus.csproj
+++ b/ProjectTrolleybus/ProjectTrolleybus/ProjectTrolleybus.csproj
@@ -8,4 +8,19 @@
enable
+
+
+ True
+ True
+ Resources.resx
+
+
+
+
+
+ ResXFileCodeGenerator
+ Resources.Designer.cs
+
+
+
\ No newline at end of file
diff --git a/ProjectTrolleybus/ProjectTrolleybus/Properties/Resources.Designer.cs b/ProjectTrolleybus/ProjectTrolleybus/Properties/Resources.Designer.cs
new file mode 100644
index 0000000..cdfb127
--- /dev/null
+++ b/ProjectTrolleybus/ProjectTrolleybus/Properties/Resources.Designer.cs
@@ -0,0 +1,103 @@
+//------------------------------------------------------------------------------
+//
+// Этот код создан программой.
+// Исполняемая версия:4.0.30319.42000
+//
+// Изменения в этом файле могут привести к неправильной работе и будут потеряны в случае
+// повторной генерации кода.
+//
+//------------------------------------------------------------------------------
+
+namespace ProjectTrolleybus.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("ProjectTrolleybus.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 play {
+ get {
+ object obj = ResourceManager.GetObject("play", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
+ }
+ }
+
+ ///
+ /// Поиск локализованного ресурса типа System.Drawing.Bitmap.
+ ///
+ internal static System.Drawing.Bitmap play1 {
+ get {
+ object obj = ResourceManager.GetObject("play1", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
+ }
+ }
+
+ ///
+ /// Поиск локализованного ресурса типа System.Drawing.Bitmap.
+ ///
+ internal static System.Drawing.Bitmap play2 {
+ get {
+ object obj = ResourceManager.GetObject("play2", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
+ }
+ }
+
+ ///
+ /// Поиск локализованного ресурса типа System.Drawing.Bitmap.
+ ///
+ internal static System.Drawing.Bitmap play3 {
+ get {
+ object obj = ResourceManager.GetObject("play3", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
+ }
+ }
+ }
+}
diff --git a/ProjectTrolleybus/ProjectTrolleybus/Properties/Resources.resx b/ProjectTrolleybus/ProjectTrolleybus/Properties/Resources.resx
new file mode 100644
index 0000000..32ab7b0
--- /dev/null
+++ b/ProjectTrolleybus/ProjectTrolleybus/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\play.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ ..\Resources\play1.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ ..\Resources\play2.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ ..\Resources\play3.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
\ No newline at end of file
diff --git a/ProjectTrolleybus/ProjectTrolleybus/Resources/play.png b/ProjectTrolleybus/ProjectTrolleybus/Resources/play.png
new file mode 100644
index 0000000..03a5964
Binary files /dev/null and b/ProjectTrolleybus/ProjectTrolleybus/Resources/play.png differ
diff --git a/ProjectTrolleybus/ProjectTrolleybus/Resources/play1.png b/ProjectTrolleybus/ProjectTrolleybus/Resources/play1.png
new file mode 100644
index 0000000..3017656
Binary files /dev/null and b/ProjectTrolleybus/ProjectTrolleybus/Resources/play1.png differ
diff --git a/ProjectTrolleybus/ProjectTrolleybus/Resources/play2.png b/ProjectTrolleybus/ProjectTrolleybus/Resources/play2.png
new file mode 100644
index 0000000..786978c
Binary files /dev/null and b/ProjectTrolleybus/ProjectTrolleybus/Resources/play2.png differ
diff --git a/ProjectTrolleybus/ProjectTrolleybus/Resources/play3.png b/ProjectTrolleybus/ProjectTrolleybus/Resources/play3.png
new file mode 100644
index 0000000..fa1ab9b
Binary files /dev/null and b/ProjectTrolleybus/ProjectTrolleybus/Resources/play3.png differ