From 525c585dc7eb056d6103c3c8113991a4d8d0e7cf Mon Sep 17 00:00:00 2001 From: "Nikolaeva_Y.A" Date: Mon, 24 Oct 2022 22:38:02 +0400 Subject: [PATCH] =?UTF-8?q?=D0=9F=D0=B5=D1=80=D0=B2=D0=B0=D1=8F=20=D0=BB?= =?UTF-8?q?=D0=B0=D0=B1=D0=BE=D1=80=D0=B0=D1=82=D0=BE=D1=80=D0=BD=D0=B0?= =?UTF-8?q?=D1=8F=20=D1=80=D0=B0=D0=B1=D0=BE=D1=82=D0=B0.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Airbus/Airbus/Airbus.csproj | 15 ++ Airbus/Airbus/Direction.cs | 16 ++ Airbus/Airbus/DrawingAirbus.cs | 195 ++++++++++++++++++ Airbus/Airbus/EntityAirbus.cs | 23 +++ Airbus/Airbus/Form1.Designer.cs | 39 ---- Airbus/Airbus/Form1.cs | 10 - Airbus/Airbus/FormAirbus.Designer.cs | 181 ++++++++++++++++ Airbus/Airbus/FormAirbus.cs | 71 +++++++ Airbus/Airbus/FormAirbus.resx | 63 ++++++ Airbus/Airbus/Program.cs | 2 +- .../Airbus/Properties/Resources.Designer.cs | 103 +++++++++ .../{Form1.resx => Properties/Resources.resx} | 13 ++ Airbus/Airbus/Resources/down.png | Bin 0 -> 4509 bytes Airbus/Airbus/Resources/left.png | Bin 0 -> 4142 bytes Airbus/Airbus/Resources/right.png | Bin 0 -> 3676 bytes Airbus/Airbus/Resources/up.png | Bin 0 -> 5280 bytes 16 files changed, 681 insertions(+), 50 deletions(-) create mode 100644 Airbus/Airbus/Direction.cs create mode 100644 Airbus/Airbus/DrawingAirbus.cs create mode 100644 Airbus/Airbus/EntityAirbus.cs delete mode 100644 Airbus/Airbus/Form1.Designer.cs delete mode 100644 Airbus/Airbus/Form1.cs create mode 100644 Airbus/Airbus/FormAirbus.Designer.cs create mode 100644 Airbus/Airbus/FormAirbus.cs create mode 100644 Airbus/Airbus/FormAirbus.resx create mode 100644 Airbus/Airbus/Properties/Resources.Designer.cs rename Airbus/Airbus/{Form1.resx => Properties/Resources.resx} (84%) create mode 100644 Airbus/Airbus/Resources/down.png create mode 100644 Airbus/Airbus/Resources/left.png create mode 100644 Airbus/Airbus/Resources/right.png create mode 100644 Airbus/Airbus/Resources/up.png diff --git a/Airbus/Airbus/Airbus.csproj b/Airbus/Airbus/Airbus.csproj index b57c89e..13ee123 100644 --- a/Airbus/Airbus/Airbus.csproj +++ b/Airbus/Airbus/Airbus.csproj @@ -8,4 +8,19 @@ enable + + + True + True + Resources.resx + + + + + + ResXFileCodeGenerator + Resources.Designer.cs + + + \ No newline at end of file diff --git a/Airbus/Airbus/Direction.cs b/Airbus/Airbus/Direction.cs new file mode 100644 index 0000000..f79212a --- /dev/null +++ b/Airbus/Airbus/Direction.cs @@ -0,0 +1,16 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Airbus +{ + internal enum Direction + { + Up = 1, + Down = 2, + Left = 3, + Right = 4 + } +} diff --git a/Airbus/Airbus/DrawingAirbus.cs b/Airbus/Airbus/DrawingAirbus.cs new file mode 100644 index 0000000..c6922d3 --- /dev/null +++ b/Airbus/Airbus/DrawingAirbus.cs @@ -0,0 +1,195 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Airbus +{ + //класс, отвечающий за прорисовку и перемещение объект + internal class DrawingAirbus + { + public EntityAirbus Airbus { get; private set; } //класс-сущность + + private float _startPosX; //левая координата отрисовки + + private float _startPosY; //верхняя координата отрисовки + + private int? _pictureWidth = null; //ширина окна отрисовки + + private int? _pictureHeight = null; //высота окна отрисовки + + protected readonly int _airbusWidth = 100; //ширина отрисовки самолёта + + protected readonly int _airbusHeight = 62; //высота отрисовки самолёта + + //инициализаци свойств + public void Initial(int speed, float weight, Color corpusColor) + { + Airbus = new EntityAirbus(); + Airbus.Initial(speed, weight, corpusColor); + } + + //установка координат позиции самолёта + public void SetPosition(int x, int y, int width, int height) + { + if (x < 0 || y < 0 || width < x + _airbusWidth || height < y + _airbusHeight) + { + _pictureHeight = null; + _pictureWidth = 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 + _airbusWidth + Airbus.Step < _pictureWidth) + { + _startPosX += Airbus.Step; + } + break; + + case Direction.Left: //влево + if (_startPosX - Airbus.Step > 0) + { + _startPosX -= Airbus.Step; + } + break; + + case Direction.Up: //вверх + if (_startPosY - Airbus.Step > 0) + { + _startPosY -= Airbus.Step; + } + break; + + case Direction.Down: //вниз + if (_startPosY + _airbusHeight + Airbus.Step < _pictureHeight) + { + _startPosY += Airbus.Step; + } + break; + } + } + + //отрисовка самолёта + public void DrawTransport(Graphics g) + { + if (_startPosX < 0 || _startPosY < 0 || !_pictureHeight.HasValue || !_pictureWidth.HasValue) + { + return; + } + Pen pen = new Pen(Color.Black); + Brush brBlack = new SolidBrush(Color.Black); + Brush br = new SolidBrush(Airbus?.CorpusColor ?? Color.Black); + + //хвостовое крыло + + PointF point1 = new PointF(_startPosX, _startPosY); + PointF point2 = new PointF(_startPosX, _startPosY + 30); + PointF point3 = new PointF(_startPosX + 30, _startPosY + 30); + PointF[] nose = { point1, point2, point3 }; + g.DrawPolygon(pen, nose); + g.FillPolygon(brBlack, nose); + + //корпус + + PointF point4 = new PointF(_startPosX, _startPosY + 30); + PointF point5 = new PointF(_startPosX + 80, _startPosY + 30); + PointF point6 = new PointF(_startPosX + 80, _startPosY + 50); + PointF point7 = new PointF(_startPosX, _startPosY + 50); + PointF[] rwing = { point4, point5, point6, point7 }; + g.DrawPolygon(pen, rwing); + g.FillPolygon(brBlack, rwing); + + // нос самолёта + + PointF point8 = new PointF(_startPosX + 80, _startPosY + 30); + PointF point9 = new PointF(_startPosX + 80, _startPosY + 50); + PointF point10 = new PointF(_startPosX + 100, _startPosY + 40); + PointF[] lwing = { point8, point9, point10 }; + g.DrawPolygon(pen, lwing); + g.FillPolygon(brBlack, lwing); + + //задние шасси + + PointF point12 = new PointF(_startPosX + 10, _startPosY + 50); + PointF point13 = new PointF(_startPosX + 10, _startPosY + 60); + PointF[] lback = { point12, point13 }; + g.DrawPolygon(pen, lback); + + //переднее шасси + + PointF point14 = new PointF(_startPosX + 50, _startPosY + 50); + PointF point15 = new PointF(_startPosX + 50, _startPosY + 60); + PointF[] xback = { point14, point15 }; + g.DrawPolygon(pen, xback); + + Brush brBack = new SolidBrush(Color.Black); + + //задние шасси + + g.FillEllipse(brBlack, _startPosX + 10, _startPosY + 55, 10, 10); + g.FillEllipse(brBlack, _startPosX + 45, _startPosY + 55, 10, 10); + + //переднее шасси + + g.FillEllipse(brBlack, _startPosX, _startPosY + 55, 10, 10); + + + g.FillPolygon(br, lwing); + g.FillPolygon(br, nose); + g.FillPolygon(br, rwing); + g.FillPolygon(br, lback); + + Brush Black = new SolidBrush(Color.Black); + + //заднее поперечное крыло + + g.FillEllipse(brBlack, _startPosX, _startPosY + 25, 25, 10); + + //крыло + + g.FillEllipse(brBlack, _startPosX + 20, _startPosY + 35, 50, 10); + } + + //смена границ формы отрисовки + public void ChangeBorders(int width, int height) + { + _pictureWidth = width; + _pictureHeight = height; + + if (_pictureWidth <= _airbusWidth || _pictureHeight <= _airbusHeight) + { + _pictureWidth = null; + _pictureHeight = null; + return; + } + + if (_startPosX + _airbusWidth > _pictureWidth) + { + _startPosX = _pictureWidth.Value - _airbusWidth; + } + + if (_startPosY + _airbusHeight > _pictureHeight) + { + _startPosY = _pictureHeight.Value - _airbusHeight; + } + } + } +} \ No newline at end of file diff --git a/Airbus/Airbus/EntityAirbus.cs b/Airbus/Airbus/EntityAirbus.cs new file mode 100644 index 0000000..1aeb7f0 --- /dev/null +++ b/Airbus/Airbus/EntityAirbus.cs @@ -0,0 +1,23 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Airbus +{ + internal class EntityAirbus + { + public int Speed { get; private set; } //скорость + public float Weight { get; private set; } //вес + public Color CorpusColor { get; private set; } //цвет корпуса + public float Step => Speed * 100 / Weight; //шаг перемещения самолёта + public void Initial(int speed, float weight, Color corpusColor) + { + Random rnd = new(); + Speed = speed <= 0 ? rnd.Next(50, 150) : speed; + Weight = weight <= 0 ? rnd.Next(40, 70) : weight; + CorpusColor = corpusColor; + } + } +} diff --git a/Airbus/Airbus/Form1.Designer.cs b/Airbus/Airbus/Form1.Designer.cs deleted file mode 100644 index 61670a6..0000000 --- a/Airbus/Airbus/Form1.Designer.cs +++ /dev/null @@ -1,39 +0,0 @@ -namespace Airbus -{ - 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 - } -} \ No newline at end of file diff --git a/Airbus/Airbus/Form1.cs b/Airbus/Airbus/Form1.cs deleted file mode 100644 index b05d848..0000000 --- a/Airbus/Airbus/Form1.cs +++ /dev/null @@ -1,10 +0,0 @@ -namespace Airbus -{ - public partial class Form1 : Form - { - public Form1() - { - InitializeComponent(); - } - } -} \ No newline at end of file diff --git a/Airbus/Airbus/FormAirbus.Designer.cs b/Airbus/Airbus/FormAirbus.Designer.cs new file mode 100644 index 0000000..fe67844 --- /dev/null +++ b/Airbus/Airbus/FormAirbus.Designer.cs @@ -0,0 +1,181 @@ +namespace Airbus +{ + partial class FormAirbus + { + /// + /// 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.toolStripStatusLabelCorpusColor = new System.Windows.Forms.ToolStripStatusLabel(); + this.pictureBoxAirbus = new System.Windows.Forms.PictureBox(); + this.buttonCreate = new System.Windows.Forms.Button(); + this.buttonDown = new System.Windows.Forms.Button(); + this.buttonRight = new System.Windows.Forms.Button(); + this.buttonLeft = new System.Windows.Forms.Button(); + this.buttonUp = new System.Windows.Forms.Button(); + this.statusStrip1.SuspendLayout(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBoxAirbus)).BeginInit(); + this.SuspendLayout(); + // + // statusStrip1 + // + this.statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.toolStripStatusLabelSpeed, + this.toolStripStatusLabelWeight, + this.toolStripStatusLabelCorpusColor}); + this.statusStrip1.Location = new System.Drawing.Point(0, 439); + this.statusStrip1.Name = "statusStrip1"; + this.statusStrip1.Size = new System.Drawing.Size(884, 22); + this.statusStrip1.TabIndex = 0; + this.statusStrip1.Text = "statusStrip1"; + // + // toolStripStatusLabelSpeed + // + this.toolStripStatusLabelSpeed.Name = "toolStripStatusLabelSpeed"; + this.toolStripStatusLabelSpeed.Size = new System.Drawing.Size(62, 17); + this.toolStripStatusLabelSpeed.Text = "Cкорость:"; + // + // toolStripStatusLabelWeight + // + this.toolStripStatusLabelWeight.Name = "toolStripStatusLabelWeight"; + this.toolStripStatusLabelWeight.Size = new System.Drawing.Size(29, 17); + this.toolStripStatusLabelWeight.Text = "Вес:"; + // + // toolStripStatusLabelCorpusColor + // + this.toolStripStatusLabelCorpusColor.Name = "toolStripStatusLabelCorpusColor"; + this.toolStripStatusLabelCorpusColor.Size = new System.Drawing.Size(36, 17); + this.toolStripStatusLabelCorpusColor.Text = "Цвет:"; + // + // pictureBoxAirbus + // + this.pictureBoxAirbus.Dock = System.Windows.Forms.DockStyle.Fill; + this.pictureBoxAirbus.Location = new System.Drawing.Point(0, 0); + this.pictureBoxAirbus.Name = "pictureBoxAirbus"; + this.pictureBoxAirbus.Size = new System.Drawing.Size(884, 439); + this.pictureBoxAirbus.SizeMode = System.Windows.Forms.PictureBoxSizeMode.AutoSize; + this.pictureBoxAirbus.TabIndex = 1; + this.pictureBoxAirbus.TabStop = false; + // + // buttonCreate + // + this.buttonCreate.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); + this.buttonCreate.Location = new System.Drawing.Point(12, 401); + this.buttonCreate.Name = "buttonCreate"; + this.buttonCreate.Size = new System.Drawing.Size(89, 23); + this.buttonCreate.TabIndex = 2; + this.buttonCreate.Text = "Создать"; + this.buttonCreate.UseVisualStyleBackColor = true; + this.buttonCreate.Click += new System.EventHandler(this.ButtonCreate_Click); + // + // buttonDown + // + this.buttonDown.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); + this.buttonDown.BackgroundImage = global::Airbus.Properties.Resources.down; + this.buttonDown.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch; + this.buttonDown.Location = new System.Drawing.Point(792, 394); + this.buttonDown.Name = "buttonDown"; + this.buttonDown.Size = new System.Drawing.Size(30, 30); + this.buttonDown.TabIndex = 3; + this.buttonDown.Text = " buttonDown"; + 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::Airbus.Properties.Resources.right; + this.buttonRight.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch; + this.buttonRight.Location = new System.Drawing.Point(831, 394); + this.buttonRight.Name = "buttonRight"; + this.buttonRight.Size = new System.Drawing.Size(30, 30); + this.buttonRight.TabIndex = 4; + this.buttonRight.UseVisualStyleBackColor = true; + this.buttonRight.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::Airbus.Properties.Resources.left; + this.buttonLeft.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch; + this.buttonLeft.Location = new System.Drawing.Point(756, 394); + this.buttonLeft.Name = "buttonLeft"; + this.buttonLeft.Size = new System.Drawing.Size(30, 30); + this.buttonLeft.TabIndex = 5; + this.buttonLeft.UseVisualStyleBackColor = true; + this.buttonLeft.Click += new System.EventHandler(this.ButtonMove_Click); + // + // buttonUp + // + this.buttonUp.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); + this.buttonUp.BackgroundImage = global::Airbus.Properties.Resources.up; + this.buttonUp.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch; + this.buttonUp.Location = new System.Drawing.Point(792, 358); + this.buttonUp.Name = "buttonUp"; + this.buttonUp.Size = new System.Drawing.Size(30, 30); + this.buttonUp.TabIndex = 6; + this.buttonUp.UseVisualStyleBackColor = true; + this.buttonUp.Click += new System.EventHandler(this.ButtonMove_Click); + // + // FormAirbus + // + this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.ClientSize = new System.Drawing.Size(884, 461); + this.Controls.Add(this.buttonUp); + this.Controls.Add(this.buttonLeft); + this.Controls.Add(this.buttonRight); + this.Controls.Add(this.buttonDown); + this.Controls.Add(this.buttonCreate); + this.Controls.Add(this.pictureBoxAirbus); + this.Controls.Add(this.statusStrip1); + this.Name = "FormAirbus"; + this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen; + this.Text = "Самолет"; + this.statusStrip1.ResumeLayout(false); + this.statusStrip1.PerformLayout(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBoxAirbus)).EndInit(); + this.ResumeLayout(false); + this.PerformLayout(); + + } + + #endregion + + private StatusStrip statusStrip1; + private ToolStripStatusLabel toolStripStatusLabelSpeed; + private ToolStripStatusLabel toolStripStatusLabelWeight; + private ToolStripStatusLabel toolStripStatusLabelCorpusColor; + private PictureBox pictureBoxAirbus; + private Button buttonCreate; + private Button buttonDown; + private Button buttonRight; + private Button buttonLeft; + private Button buttonUp; + } +} \ No newline at end of file diff --git a/Airbus/Airbus/FormAirbus.cs b/Airbus/Airbus/FormAirbus.cs new file mode 100644 index 0000000..7ae76e3 --- /dev/null +++ b/Airbus/Airbus/FormAirbus.cs @@ -0,0 +1,71 @@ +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 Airbus +{ + public partial class FormAirbus : Form + { + private DrawingAirbus _airbus; + public FormAirbus() + { + InitializeComponent(); + } + // + private void Draw() + { + Bitmap bmp = new(pictureBoxAirbus.Width, pictureBoxAirbus.Height); + Graphics gr = Graphics.FromImage(bmp); + _airbus?.DrawTransport(gr); + pictureBoxAirbus.Image = bmp; + } + + // "" + private void ButtonCreate_Click(object sender, EventArgs e) + { + Random rnd = new(); + _airbus = new DrawingAirbus(); + _airbus.Initial(rnd.Next(100, 300), rnd.Next(1000, 2000), Color.FromArgb(rnd.Next(0, 256), rnd.Next(0, 256), rnd.Next(0, 256))); + _airbus.SetPosition(rnd.Next(10, 110), rnd.Next(10, 110), pictureBoxAirbus.Width, pictureBoxAirbus.Height); + toolStripStatusLabelSpeed.Text = $": {_airbus.Airbus?.Speed}"; + toolStripStatusLabelWeight.Text = $": {_airbus.Airbus?.Weight}"; + toolStripStatusLabelCorpusColor.Text = $": {_airbus.Airbus?.CorpusColor.Name}"; + Draw(); + } + + private void ButtonMove_Click(object sender, EventArgs e) + { + // + string name = ((Button)sender)?.Name ?? string.Empty; + switch (name) + { + case "buttonUp": + _airbus?.MoveTransport(Direction.Up); + break; + case "buttonDown": + _airbus?.MoveTransport(Direction.Down); + break; + case "buttonLeft": + _airbus?.MoveTransport(Direction.Left); + break; + case "buttonRight": + _airbus?.MoveTransport(Direction.Right); + break; + } + Draw(); + } + + // + private void PictureBoxCar_Resize(object sender, EventArgs e) + { + _airbus?.ChangeBorders(pictureBoxAirbus.Width, pictureBoxAirbus.Height); + Draw(); + } + } +} \ No newline at end of file diff --git a/Airbus/Airbus/FormAirbus.resx b/Airbus/Airbus/FormAirbus.resx new file mode 100644 index 0000000..5cb320f --- /dev/null +++ b/Airbus/Airbus/FormAirbus.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/Airbus/Airbus/Program.cs b/Airbus/Airbus/Program.cs index a16658c..5486d2d 100644 --- a/Airbus/Airbus/Program.cs +++ b/Airbus/Airbus/Program.cs @@ -11,7 +11,7 @@ namespace Airbus // 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 FormAirbus()); } } } \ No newline at end of file diff --git a/Airbus/Airbus/Properties/Resources.Designer.cs b/Airbus/Airbus/Properties/Resources.Designer.cs new file mode 100644 index 0000000..6eb3613 --- /dev/null +++ b/Airbus/Airbus/Properties/Resources.Designer.cs @@ -0,0 +1,103 @@ +//------------------------------------------------------------------------------ +// +// Этот код создан программой. +// Исполняемая версия:4.0.30319.42000 +// +// Изменения в этом файле могут привести к неправильной работе и будут потеряны в случае +// повторной генерации кода. +// +//------------------------------------------------------------------------------ + +namespace Airbus.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("Airbus.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 down { + get { + object obj = ResourceManager.GetObject("down", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Поиск локализованного ресурса типа System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap left { + get { + object obj = ResourceManager.GetObject("left", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Поиск локализованного ресурса типа System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap right { + get { + object obj = ResourceManager.GetObject("right", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Поиск локализованного ресурса типа System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap up { + get { + object obj = ResourceManager.GetObject("up", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + } +} diff --git a/Airbus/Airbus/Form1.resx b/Airbus/Airbus/Properties/Resources.resx similarity index 84% rename from Airbus/Airbus/Form1.resx rename to Airbus/Airbus/Properties/Resources.resx index 1af7de1..53ec0b4 100644 --- a/Airbus/Airbus/Form1.resx +++ b/Airbus/Airbus/Properties/Resources.resx @@ -117,4 +117,17 @@ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + ..\Resources\down.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + ..\Resources\left.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + ..\Resources\right.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + ..\Resources\up.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + \ No newline at end of file diff --git a/Airbus/Airbus/Resources/down.png b/Airbus/Airbus/Resources/down.png new file mode 100644 index 0000000000000000000000000000000000000000..9642200c8cc1b8ddcdead658f629d846a78e3f26 GIT binary patch literal 4509 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 c`@h`OP^KX{fKsK+j1Jfj}6vwbYFvkTbwM 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 literal 0 HcmV?d00001