From 7a1e35c6a40f57751de1ff3c2fd07d7b6bdcbe4c Mon Sep 17 00:00:00 2001 From: shadowik Date: Tue, 6 Sep 2022 10:37:30 +0400 Subject: [PATCH] =?UTF-8?q?=D0=9B=D0=B0=D0=B1=D0=BE=D1=80=D0=B0=D1=82?= =?UTF-8?q?=D0=BE=D1=80=D0=BD=D0=B0=D1=8F=20=D1=80=D0=B0=D0=B1=D0=BE=D1=82?= =?UTF-8?q?=D0=B0=201?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- DoubleDeckerBus/DoubleDeckerBus.sln | 25 +++ DoubleDeckerBus/DoubleDeckerBus/Direction.cs | 16 ++ .../DoubleDeckerBus/DoubleDeckerBus.csproj | 29 +++ .../DoubleDeckerBus/DrawningBus.cs | 117 +++++++++++ DoubleDeckerBus/DoubleDeckerBus/EntityBus.cs | 23 +++ .../DoubleDeckerBus/FormBus.Designer.cs | 185 ++++++++++++++++++ DoubleDeckerBus/DoubleDeckerBus/FormBus.cs | 59 ++++++ DoubleDeckerBus/DoubleDeckerBus/FormBus.resx | 63 ++++++ DoubleDeckerBus/DoubleDeckerBus/Program.cs | 17 ++ .../Properties/Resources.Designer.cs | 103 ++++++++++ .../DoubleDeckerBus/Properties/Resources.resx | 133 +++++++++++++ .../DoubleDeckerBus/Resources/DownArrow.png | Bin 0 -> 414 bytes .../DoubleDeckerBus/Resources/LeftArrow.png | Bin 0 -> 439 bytes .../DoubleDeckerBus/Resources/RightArrow.png | Bin 0 -> 377 bytes .../DoubleDeckerBus/Resources/UpArrow.png | Bin 0 -> 439 bytes 15 files changed, 770 insertions(+) create mode 100644 DoubleDeckerBus/DoubleDeckerBus.sln create mode 100644 DoubleDeckerBus/DoubleDeckerBus/Direction.cs create mode 100644 DoubleDeckerBus/DoubleDeckerBus/DoubleDeckerBus.csproj create mode 100644 DoubleDeckerBus/DoubleDeckerBus/DrawningBus.cs create mode 100644 DoubleDeckerBus/DoubleDeckerBus/EntityBus.cs create mode 100644 DoubleDeckerBus/DoubleDeckerBus/FormBus.Designer.cs create mode 100644 DoubleDeckerBus/DoubleDeckerBus/FormBus.cs create mode 100644 DoubleDeckerBus/DoubleDeckerBus/FormBus.resx create mode 100644 DoubleDeckerBus/DoubleDeckerBus/Program.cs create mode 100644 DoubleDeckerBus/DoubleDeckerBus/Properties/Resources.Designer.cs create mode 100644 DoubleDeckerBus/DoubleDeckerBus/Properties/Resources.resx create mode 100644 DoubleDeckerBus/DoubleDeckerBus/Resources/DownArrow.png create mode 100644 DoubleDeckerBus/DoubleDeckerBus/Resources/LeftArrow.png create mode 100644 DoubleDeckerBus/DoubleDeckerBus/Resources/RightArrow.png create mode 100644 DoubleDeckerBus/DoubleDeckerBus/Resources/UpArrow.png diff --git a/DoubleDeckerBus/DoubleDeckerBus.sln b/DoubleDeckerBus/DoubleDeckerBus.sln new file mode 100644 index 0000000..2b45783 --- /dev/null +++ b/DoubleDeckerBus/DoubleDeckerBus.sln @@ -0,0 +1,25 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 17 +VisualStudioVersion = 17.3.32825.248 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DoubleDeckerBus", "DoubleDeckerBus\DoubleDeckerBus.csproj", "{06A32820-E69C-4143-B792-3934F78E3B36}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {06A32820-E69C-4143-B792-3934F78E3B36}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {06A32820-E69C-4143-B792-3934F78E3B36}.Debug|Any CPU.Build.0 = Debug|Any CPU + {06A32820-E69C-4143-B792-3934F78E3B36}.Release|Any CPU.ActiveCfg = Release|Any CPU + {06A32820-E69C-4143-B792-3934F78E3B36}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {95FBC880-3E28-450E-A8A3-1789F6AD21FE} + EndGlobalSection +EndGlobal diff --git a/DoubleDeckerBus/DoubleDeckerBus/Direction.cs b/DoubleDeckerBus/DoubleDeckerBus/Direction.cs new file mode 100644 index 0000000..41d2633 --- /dev/null +++ b/DoubleDeckerBus/DoubleDeckerBus/Direction.cs @@ -0,0 +1,16 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace DoubleDeckerBus +{ + internal enum Direction + { + Up = 1, + Down = 2, + Left = 3, + Right = 4 + } +} diff --git a/DoubleDeckerBus/DoubleDeckerBus/DoubleDeckerBus.csproj b/DoubleDeckerBus/DoubleDeckerBus/DoubleDeckerBus.csproj new file mode 100644 index 0000000..d7b238e --- /dev/null +++ b/DoubleDeckerBus/DoubleDeckerBus/DoubleDeckerBus.csproj @@ -0,0 +1,29 @@ + + + + WinExe + net6.0-windows + enable + true + enable + + + + + PreserveNewest + + + True + True + Resources.resx + + + + + + ResXFileCodeGenerator + Resources.Designer.cs + + + + \ No newline at end of file diff --git a/DoubleDeckerBus/DoubleDeckerBus/DrawningBus.cs b/DoubleDeckerBus/DoubleDeckerBus/DrawningBus.cs new file mode 100644 index 0000000..1ec2432 --- /dev/null +++ b/DoubleDeckerBus/DoubleDeckerBus/DrawningBus.cs @@ -0,0 +1,117 @@ +using System; +using System.Collections.Generic; +using System.Globalization; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace DoubleDeckerBus +{ + internal class DrawningBus + { + public EntityBus Bus { get; private set; } + + private float _startPosX; + private float _startPosY; + private int? _pictureWidth = null; + private int? _pictureHeight = null; + private readonly int _busWidth = 100; + private readonly int _busHeight = 50; + + public void Init(int speed, float weight, Color bodyColor) { + Bus = new EntityBus(); + Bus.Init(speed, weight, bodyColor); + } + + public void SetPosition(int x, int y, int width, int height) { + if (_pictureWidth <= _busWidth || _pictureHeight <= _busHeight) { + _pictureWidth = null; + _pictureHeight = null; + return; + } + _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 + _busWidth + Bus.Step < _pictureWidth) { + _startPosX += Bus.Step; + } + break; + case Direction.Left: + if (_startPosX - Bus.Step >= 0) { + _startPosX -= Bus.Step; + } + break; + case Direction.Up: + if (_startPosY - Bus.Step >= 0) { + _startPosY -= Bus.Step; + } + break; + case Direction.Down: + if (_startPosY + _busHeight + Bus.Step < _pictureHeight) { + _startPosY += Bus.Step; + } + break; + } + } + + public void DrawTransport(Graphics g) + { + if (_startPosX < 0 || _startPosY < 0 + || !_pictureHeight.HasValue || !_pictureWidth.HasValue) + { + return; + } + Pen pen = new(Color.Black); + //границы автобсуса + g.DrawRectangle(pen, _startPosX - 1, _startPosY + 11, 100, 30); + Brush brBodyColor = new SolidBrush(Bus.BodyColor); + g.FillRectangle(brBodyColor, _startPosX, _startPosY + 10, 100, 30); + + //Дверь + g.DrawRectangle(pen, _startPosX + 30, _startPosY + 20, 10, 20); + Brush brBlack = new SolidBrush(Color.Black); + g.FillRectangle(brBlack, _startPosX + 30, _startPosY + 20, 10, 20); + + //Колеса + g.DrawEllipse(pen, _startPosX + 7, _startPosY + 35, 10, 10); + g.DrawEllipse(pen, _startPosX + 77, _startPosY + 35, 10, 10); + g.FillEllipse(brBlack, _startPosX + 7, _startPosY + 35, 10, 10); + g.FillEllipse(brBlack, _startPosX + 77, _startPosY + 35, 10, 10); + + //окна + Brush brBlue = new SolidBrush(Color.Blue); + g.FillEllipse(brBlue, _startPosX + 10, _startPosY + 15, 10, 15); + g.FillEllipse(brBlue, _startPosX + 50, _startPosY + 15, 10, 15); + g.FillEllipse(brBlue, _startPosX + 70, _startPosY + 15, 10, 15); + g.FillEllipse(brBlue, _startPosX + 90, _startPosY + 15, 10, 15); + } + + public void ChangeBorders(int width, int height) { + _pictureWidth = width; + _pictureHeight = height; + if (_pictureWidth <= _busWidth || _pictureHeight <= _busHeight){ + _pictureWidth = null; + _pictureHeight = null; + return; + } + if (_startPosX + _busWidth > _pictureWidth) { + _startPosX = _pictureWidth.Value - _busWidth; + } + if (_startPosY + _busHeight > _pictureHeight) { + _startPosY = _pictureHeight.Value - _busHeight; + } + } + } +} diff --git a/DoubleDeckerBus/DoubleDeckerBus/EntityBus.cs b/DoubleDeckerBus/DoubleDeckerBus/EntityBus.cs new file mode 100644 index 0000000..11c1050 --- /dev/null +++ b/DoubleDeckerBus/DoubleDeckerBus/EntityBus.cs @@ -0,0 +1,23 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace DoubleDeckerBus +{ + internal class EntityBus + { + 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 Random(); + Speed = (speed <= 0) ? rnd.Next(50, 150) : speed; + Weight = (weight <= 0) ? rnd.Next(50, 70) : weight; + BodyColor = bodyColor; + } + } +} diff --git a/DoubleDeckerBus/DoubleDeckerBus/FormBus.Designer.cs b/DoubleDeckerBus/DoubleDeckerBus/FormBus.Designer.cs new file mode 100644 index 0000000..023e3ce --- /dev/null +++ b/DoubleDeckerBus/DoubleDeckerBus/FormBus.Designer.cs @@ -0,0 +1,185 @@ +namespace DoubleDeckerBus +{ + partial class FormBus + { + /// + /// 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.statusStrip1 = 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.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.pictureBoxBus = new System.Windows.Forms.PictureBox(); + this.statusStrip1.SuspendLayout(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBoxBus)).BeginInit(); + this.SuspendLayout(); + // + // statusStrip1 + // + this.statusStrip1.ImageScalingSize = new System.Drawing.Size(20, 20); + this.statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.toolStripStatusLabelSpeed, + this.toolStripStatusLabelWeight, + this.toolStripStatusLabelBodyColor}); + this.statusStrip1.Location = new System.Drawing.Point(0, 425); + this.statusStrip1.Name = "statusStrip1"; + this.statusStrip1.Size = new System.Drawing.Size(800, 26); + this.statusStrip1.TabIndex = 1; + this.statusStrip1.Text = "statusStrip1"; + // + // toolStripStatusLabelSpeed + // + this.toolStripStatusLabelSpeed.Name = "toolStripStatusLabelSpeed"; + this.toolStripStatusLabelSpeed.Size = new System.Drawing.Size(80, 20); + this.toolStripStatusLabelSpeed.Text = "Скорость: "; + // + // toolStripStatusLabelWeight + // + this.toolStripStatusLabelWeight.Name = "toolStripStatusLabelWeight"; + this.toolStripStatusLabelWeight.Size = new System.Drawing.Size(40, 20); + this.toolStripStatusLabelWeight.Text = "Вес: "; + // + // toolStripStatusLabelBodyColor + // + this.toolStripStatusLabelBodyColor.Name = "toolStripStatusLabelBodyColor"; + this.toolStripStatusLabelBodyColor.Size = new System.Drawing.Size(49, 20); + this.toolStripStatusLabelBodyColor.Text = "Цвет: "; + // + // 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(0, 396); + this.buttonCreate.Name = "buttonCreate"; + this.buttonCreate.Size = new System.Drawing.Size(99, 28); + 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::DoubleDeckerBus.Properties.Resources.UpArrow; + this.buttonUp.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch; + this.buttonUp.Location = new System.Drawing.Point(718, 337); + this.buttonUp.Name = "buttonUp"; + this.buttonUp.Size = new System.Drawing.Size(30, 29); + this.buttonUp.TabIndex = 3; + this.buttonUp.Text = " "; + 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::DoubleDeckerBus.Properties.Resources.LeftArrow; + this.buttonLeft.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch; + this.buttonLeft.Location = new System.Drawing.Point(693, 363); + this.buttonLeft.Name = "buttonLeft"; + this.buttonLeft.Size = new System.Drawing.Size(30, 29); + this.buttonLeft.TabIndex = 4; + this.buttonLeft.Text = " "; + 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::DoubleDeckerBus.Properties.Resources.DownArrow; + this.buttonDown.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch; + this.buttonDown.Location = new System.Drawing.Point(719, 388); + this.buttonDown.Name = "buttonDown"; + this.buttonDown.Size = new System.Drawing.Size(30, 29); + this.buttonDown.TabIndex = 5; + this.buttonDown.Text = " "; + 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::DoubleDeckerBus.Properties.Resources.RightArrow; + this.buttonRight.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch; + this.buttonRight.Location = new System.Drawing.Point(745, 363); + this.buttonRight.Name = "buttonRight"; + this.buttonRight.Size = new System.Drawing.Size(30, 29); + this.buttonRight.TabIndex = 6; + this.buttonRight.Text = " "; + this.buttonRight.UseVisualStyleBackColor = true; + this.buttonRight.Click += new System.EventHandler(this.ButtonMove_Click); + // + // pictureBoxBus + // + this.pictureBoxBus.Dock = System.Windows.Forms.DockStyle.Fill; + this.pictureBoxBus.Location = new System.Drawing.Point(0, 0); + this.pictureBoxBus.Name = "pictureBoxBus"; + this.pictureBoxBus.Size = new System.Drawing.Size(800, 425); + this.pictureBoxBus.SizeMode = System.Windows.Forms.PictureBoxSizeMode.AutoSize; + this.pictureBoxBus.TabIndex = 7; + this.pictureBoxBus.TabStop = false; + this.pictureBoxBus.Resize += new System.EventHandler(this.PictureBoxBus_Resize); + // + // FormBus + // + this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 20F); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.ClientSize = new System.Drawing.Size(800, 451); + 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.pictureBoxBus); + this.Controls.Add(this.statusStrip1); + this.Name = "FormBus"; + this.Text = "Двухэтажный автобус"; + this.Resize += new System.EventHandler(this.PictureBoxBus_Resize); + this.statusStrip1.ResumeLayout(false); + this.statusStrip1.PerformLayout(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBoxBus)).EndInit(); + this.ResumeLayout(false); + this.PerformLayout(); + + } + + #endregion + private StatusStrip statusStrip1; + private ToolStripStatusLabel toolStripStatusLabelSpeed; + private ToolStripStatusLabel toolStripStatusLabelWeight; + private ToolStripStatusLabel toolStripStatusLabelBodyColor; + private Button buttonCreate; + private Button buttonUp; + private Button buttonLeft; + private Button buttonDown; + private Button buttonRight; + private PictureBox pictureBoxBus; + } +} \ No newline at end of file diff --git a/DoubleDeckerBus/DoubleDeckerBus/FormBus.cs b/DoubleDeckerBus/DoubleDeckerBus/FormBus.cs new file mode 100644 index 0000000..c4b4ce5 --- /dev/null +++ b/DoubleDeckerBus/DoubleDeckerBus/FormBus.cs @@ -0,0 +1,59 @@ +namespace DoubleDeckerBus +{ + public partial class FormBus : Form + { + private DrawningBus _bus; + public FormBus() + { + InitializeComponent(); + } + + private void Draw() + { + Bitmap bmp = new(pictureBoxBus.Width, pictureBoxBus.Height); + Graphics gr = Graphics.FromImage(bmp); + _bus?.DrawTransport(gr); + pictureBoxBus.Image = bmp; + } + + private void ButtonCreate_Click(object sender, EventArgs e) + { + Random rnd = new(); + _bus = new DrawningBus(); + _bus.Init(rnd.Next(100, 300), rnd.Next(1000, 2000), Color.FromArgb(rnd.Next(0, 256), rnd.Next(0, 256), rnd.Next(0, 256))); + _bus.SetPosition(rnd.Next(10, 100), rnd.Next(10, 100), pictureBoxBus.Width, pictureBoxBus.Height); + toolStripStatusLabelSpeed.Text = $": {_bus.Bus.Speed}"; + toolStripStatusLabelWeight.Text = $": {_bus.Bus.Weight}"; + toolStripStatusLabelBodyColor.Text = $": {_bus.Bus.BodyColor.Name}"; + Draw(); + } + + private void ButtonMove_Click(object sender, EventArgs e) + { + // + string name = ((Button)sender)?.Name ?? string.Empty; + switch (name) + { + case "buttonUp": + _bus?.MoveTransport(Direction.Up); + break; + case "buttonDown": + _bus?.MoveTransport(Direction.Down); + break; + case "buttonLeft": + _bus?.MoveTransport(Direction.Left); + break; + case "buttonRight": + _bus?.MoveTransport(Direction.Right); + break; + } + Draw(); + } + + private void PictureBoxBus_Resize(object sender, EventArgs e) + { + _bus?.ChangeBorders(pictureBoxBus.Width, pictureBoxBus.Height); + Draw(); + } + } +} \ No newline at end of file diff --git a/DoubleDeckerBus/DoubleDeckerBus/FormBus.resx b/DoubleDeckerBus/DoubleDeckerBus/FormBus.resx new file mode 100644 index 0000000..5cb320f --- /dev/null +++ b/DoubleDeckerBus/DoubleDeckerBus/FormBus.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/DoubleDeckerBus/DoubleDeckerBus/Program.cs b/DoubleDeckerBus/DoubleDeckerBus/Program.cs new file mode 100644 index 0000000..cecbba3 --- /dev/null +++ b/DoubleDeckerBus/DoubleDeckerBus/Program.cs @@ -0,0 +1,17 @@ +namespace DoubleDeckerBus +{ + 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 FormBus()); + } + } +} \ No newline at end of file diff --git a/DoubleDeckerBus/DoubleDeckerBus/Properties/Resources.Designer.cs b/DoubleDeckerBus/DoubleDeckerBus/Properties/Resources.Designer.cs new file mode 100644 index 0000000..7f3a7a1 --- /dev/null +++ b/DoubleDeckerBus/DoubleDeckerBus/Properties/Resources.Designer.cs @@ -0,0 +1,103 @@ +//------------------------------------------------------------------------------ +// +// Этот код создан программой. +// Исполняемая версия:4.0.30319.42000 +// +// Изменения в этом файле могут привести к неправильной работе и будут потеряны в случае +// повторной генерации кода. +// +//------------------------------------------------------------------------------ + +namespace DoubleDeckerBus.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("DoubleDeckerBus.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 DownArrow { + get { + object obj = ResourceManager.GetObject("DownArrow", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Поиск локализованного ресурса типа System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap LeftArrow { + get { + object obj = ResourceManager.GetObject("LeftArrow", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Поиск локализованного ресурса типа System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap RightArrow { + get { + object obj = ResourceManager.GetObject("RightArrow", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Поиск локализованного ресурса типа System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap UpArrow { + get { + object obj = ResourceManager.GetObject("UpArrow", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + } +} diff --git a/DoubleDeckerBus/DoubleDeckerBus/Properties/Resources.resx b/DoubleDeckerBus/DoubleDeckerBus/Properties/Resources.resx new file mode 100644 index 0000000..6a27ce7 --- /dev/null +++ b/DoubleDeckerBus/DoubleDeckerBus/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\RightArrow.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + ..\Resources\LeftArrow.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + ..\Resources\DownArrow.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + ..\Resources\UpArrow.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + \ No newline at end of file diff --git a/DoubleDeckerBus/DoubleDeckerBus/Resources/DownArrow.png b/DoubleDeckerBus/DoubleDeckerBus/Resources/DownArrow.png new file mode 100644 index 0000000000000000000000000000000000000000..ec660ba61e837835fcfb1671de5089607b05dd79 GIT binary patch literal 414 zcmV;P0b%}$P)Px#1ZP1_K>z@;j|==^1poj532;bRa{vGi!vFvd!vV){sAK>D0W(QNK~zXf?UK7r zgg_XD8ELJ&ls<;Fu{Ysjr@o8CSJAa05r_rlZp&-fx@uxi#`81(k_^IJ*3$Ws&DlfP z^DSYbKp+s<7s08KB*|GE#}9qqzcfwr%9p*!vg}F-agCk(vMk^D^2jeSesF=dO4 z`J8mebXya*ZTpRQS53zzH%Y;kw@2mw_u_X7B624+$D)*NDi9FBG>BBV;`1eH755|##iRU5M>i_@%07*qo IM6N<$g2qv@d;kCd literal 0 HcmV?d00001 diff --git a/DoubleDeckerBus/DoubleDeckerBus/Resources/LeftArrow.png b/DoubleDeckerBus/DoubleDeckerBus/Resources/LeftArrow.png new file mode 100644 index 0000000000000000000000000000000000000000..51d95ac732f711fdd5775fbd735e1e5536587a10 GIT binary patch literal 439 zcmV;o0Z9IdP)Px#1ZP1_K>z@;j|==^1poj532;bRa{vGi!vFvd!vV){sAK>D0Zd6mK~zXf?Up-E z!$1&*y|_o>)p85^P`XHAQwGk0#Z?k$EMZ%40j>fSB99Z;<{x$<5yd;+T|1E?U4P()F5nx^RqM=KOpUsN2&->6qQ2BSRBKe!j^BPQt_^;}0yUDwxTS$=Ue z;

gXq6IS7(Q_;;v+UniK?nzxfO90lk^9*RoXPo3%2=QA{{? zVk;h0O4x`8ml9p#ok$7sa7j||>?fPcsC(|c@Est%5uY)(dV$jV&VpX6 z7FUc5U!p8^+G2tmn{n?<*H$+c@+tRDxC{{EdPx$Gf6~2R7gwJ*1b-{Fc1guJI`!X zX1)S|TKfSaI8D>rs;a(P$bp&9wYUgQl4Moa^-IU;)VK&HqDKJu=!sQ@i{J(%qE`TT zj)jY10lsJE3u(=R;Fx$Y91B;$9)AOXr=FUR#;%5ic+=;dYZ5$$BjR12=bv5jX~IM_ zROg*y&URkRn$|_=3|557-%pY3k`x}qGH%uyD-MAwNpyn#{(CE z(a|_*a#?F{j4|J>m#9&3)P6MH1HjhfKg@hB{r9S)K5m@ldfQhk?epLPqJ`S~W`q9$ XF6oya+nxKm00000NkvXXu0mjfE99rn literal 0 HcmV?d00001 diff --git a/DoubleDeckerBus/DoubleDeckerBus/Resources/UpArrow.png b/DoubleDeckerBus/DoubleDeckerBus/Resources/UpArrow.png new file mode 100644 index 0000000000000000000000000000000000000000..d3c45c0714596ccfa1b79dd648f8367ede0d68bd GIT binary patch literal 439 zcmeAS@N?(olHy`uVBq!ia0vp^av;pX1|+Qw)-3{3jKx9jP7LeL$-D$|SkfJR9T^xl z_H+M9WCij$3p^r=85sBugD~Uq{1quc4a%M_jv*f2Zzt`~I&2`&zP5s2#U%T_QpMR< zia+=(GB1U5K8c-_chsyzzjm6RuJ7`7$9}G~o9Qxft#IVm#-DdNf7>0j{7_-jWpjS| zr-j!f9bYz`*z|_o^8Kv`A=92R-7M4P58tR4YH>RDh;vZu?Y6NpdACm#kXldwZMyl~-pBKX<>Hr(Gy>Jh)}gTu#l}Wxv?EYaBOMuR9Vb z@;7j$u~ul$$*(uft&i;syK&umtI)JBLWj?V&-m#0)&AK2T^e1-mt}t2@mJffVsWzi zB$dea#2Lxw)~$Q(Z}qLhW?nUClkpvs2WbkzLb6Mw<(8T_Zzs4kQv(E1) bJF08y^84R(D*RxrS=)5ewcZaHt_Xzy!C1V; literal 0 HcmV?d00001 -- 2.25.1