diff --git a/PIbd-21_Potapov_N.S._Catamaran_Base.backup/PIbd-21_Potapov_N.S._Catamaran_Base/App.config b/PIbd-21_Potapov_N.S._Catamaran_Base.backup/PIbd-21_Potapov_N.S._Catamaran_Base/App.config
deleted file mode 100644
index 56efbc7..0000000
--- a/PIbd-21_Potapov_N.S._Catamaran_Base.backup/PIbd-21_Potapov_N.S._Catamaran_Base/App.config
+++ /dev/null
@@ -1,6 +0,0 @@
-
-
-
-
-
-
\ No newline at end of file
diff --git a/PIbd-21_Potapov_N.S._Catamaran_Base.backup/PIbd-21_Potapov_N.S._Catamaran_Base/Directions.cs b/PIbd-21_Potapov_N.S._Catamaran_Base.backup/PIbd-21_Potapov_N.S._Catamaran_Base/Directions.cs
deleted file mode 100644
index 7ea5793..0000000
--- a/PIbd-21_Potapov_N.S._Catamaran_Base.backup/PIbd-21_Potapov_N.S._Catamaran_Base/Directions.cs
+++ /dev/null
@@ -1,16 +0,0 @@
-using System;
-using System.Collections.Generic;
-using System.Linq;
-using System.Text;
-using System.Threading.Tasks;
-
-namespace PIbd_21_Potapov_N.S._Catamaran_Base
-{
- enum Directions
- {
- Up,
- Down,
- Left,
- Right
- }
-}
diff --git a/PIbd-21_Potapov_N.S._Catamaran_Base.backup/PIbd-21_Potapov_N.S._Catamaran_Base/DrawCatamaran.cs b/PIbd-21_Potapov_N.S._Catamaran_Base.backup/PIbd-21_Potapov_N.S._Catamaran_Base/DrawCatamaran.cs
deleted file mode 100644
index 08fce9a..0000000
--- a/PIbd-21_Potapov_N.S._Catamaran_Base.backup/PIbd-21_Potapov_N.S._Catamaran_Base/DrawCatamaran.cs
+++ /dev/null
@@ -1,122 +0,0 @@
-using System;
-using System.Collections.Generic;
-using System.Linq;
-using System.Text;
-using System.Drawing;
-using System.Threading.Tasks;
-
-namespace PIbd_21_Potapov_N.S._Catamaran_Base
-{
- class DrawCatamaran
- {
- public EntityCatamaran Catamaran { get; private set; }
- private int _StartPosX;
- private int _StartPosY;
- public int? _PictureWidth = null;
- public int? _PictureHeight = null;
- private readonly int _CatamaranWidth = 80;
- private readonly int _CatamaranHeight = 50;
-
- public void Init(float w, Color c, Directions d, float v)
- {
- EntityCatamaran entityCatamaran = new EntityCatamaran();
- entityCatamaran.Init(w, c, d, v);
- Catamaran = entityCatamaran;
- }
-
- public void SetPosition(int x, int y, int? width, int height)
- {
- //todo проверки
- _StartPosX = x;
- _StartPosY = y;
- _PictureWidth = width;
- _PictureHeight = height;
- }
-
- public void MoveTransport(Directions direction)
- {
- if (!_PictureWidth.HasValue || !_PictureHeight.HasValue)
- {
- return;
- }
-
- switch (direction)
- {
- case Directions.Up:
- if (_StartPosY - Catamaran.Step > 0)
- {
- _StartPosY -= (int)Catamaran.Step;
- }
- break;
- case Directions.Down:
- if (_StartPosY + _CatamaranHeight + Catamaran.Step <= _PictureHeight)
- {
- _StartPosY += (int)Catamaran.Step;
- }
- break;
- case Directions.Left:
- if (_StartPosX - Catamaran.Step > 0)
- {
- _StartPosX -= (int)Catamaran.Step;
- }
- break;
- case Directions.Right:
- if (_StartPosX + _CatamaranWidth + Catamaran.Step < _PictureWidth)
- {
- _StartPosX += (int)Catamaran.Step;
- }
- break;
- default:
- break;
- }
- }
-
- public void DrawTransport(Graphics g)
- {
-
- int nx = _StartPosX;
- int ny = _StartPosY;
-
- // Корпус катамарана
- g.DrawLine(Pens.Black, nx, ny, nx + _CatamaranWidth - 10, ny);
- g.DrawLine(Pens.Black, nx, ny + _CatamaranHeight, nx + _CatamaranWidth - 10, ny + _CatamaranHeight);
-
- g.DrawLine(Pens.Black, nx, ny, nx, ny + _CatamaranHeight);
- g.DrawLine(Pens.Black, nx + _CatamaranWidth, ny + 10, nx + _CatamaranWidth, ny + _CatamaranHeight - 10);
-
- g.DrawLine(Pens.Black, nx + _CatamaranWidth - 10, ny, nx + _CatamaranWidth, ny + 10);
- g.DrawLine(Pens.Black, nx + _CatamaranWidth - 10, ny + _CatamaranHeight, nx + _CatamaranWidth, ny + _CatamaranHeight - 10);
- //
-
- g.DrawEllipse(Pens.Black, nx + 10, ny + 10, _CatamaranWidth - 20, _CatamaranHeight - 20);
-
- }
-
- public void ChangeBorders(int nwidth, int nheight)
- {
- _PictureWidth = nwidth;
- _PictureHeight = nheight;
- if (_PictureWidth <= _CatamaranWidth || _PictureHeight <= _CatamaranHeight)
- {
- _PictureWidth = null;
- _PictureHeight = null;
- return;
- }
- if (_StartPosX + _CatamaranWidth > _PictureWidth)
- {
- _StartPosX = _PictureWidth.Value - _CatamaranWidth;
- }
- if (_StartPosY + _CatamaranHeight > _PictureHeight)
- {
- _StartPosY = _PictureHeight.Value - _CatamaranHeight;
- }
- }
-
- public string GetStatus()
- {
- string status = "";
- status += "Pos: " + _StartPosX + ", " + _StartPosY;
- return status;
- }
- }
-}
diff --git a/PIbd-21_Potapov_N.S._Catamaran_Base.backup/PIbd-21_Potapov_N.S._Catamaran_Base/EntityCatamaran.cs b/PIbd-21_Potapov_N.S._Catamaran_Base.backup/PIbd-21_Potapov_N.S._Catamaran_Base/EntityCatamaran.cs
deleted file mode 100644
index 6cdfa90..0000000
--- a/PIbd-21_Potapov_N.S._Catamaran_Base.backup/PIbd-21_Potapov_N.S._Catamaran_Base/EntityCatamaran.cs
+++ /dev/null
@@ -1,28 +0,0 @@
-using System;
-using System.Collections.Generic;
-using System.Linq;
-using System.Text;
-using System.Threading.Tasks;
-using System.Drawing;
-
-namespace PIbd_21_Potapov_N.S._Catamaran_Base
-{
- class EntityCatamaran
- {
- public float Weight { get; private set; }
- public Color EntityColor { get; private set; }
- public Directions Direction { get; private set; }
- public float Speed { get; private set; }
- public float Step { get; private set; }
-
- public void Init(float w, Color c, Directions d, float v)
- {
- Random rnd = new Random();
- Speed = (v <= 0 ? rnd.Next(50, 100) : v);
- Weight = (w <= 0 ? rnd.Next(40, 80) : w);
- EntityColor = c;
- Direction = d;
- Step = Speed * 100 / Weight;
- }
- }
-}
diff --git a/PIbd-21_Potapov_N.S._Catamaran_Base.backup/PIbd-21_Potapov_N.S._Catamaran_Base/Form.Designer.cs b/PIbd-21_Potapov_N.S._Catamaran_Base.backup/PIbd-21_Potapov_N.S._Catamaran_Base/Form.Designer.cs
deleted file mode 100644
index 78f0aaa..0000000
--- a/PIbd-21_Potapov_N.S._Catamaran_Base.backup/PIbd-21_Potapov_N.S._Catamaran_Base/Form.Designer.cs
+++ /dev/null
@@ -1,161 +0,0 @@
-
-namespace PIbd_21_Potapov_N.S._Catamaran_Base
-{
- partial class Form
- {
- ///
- /// 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.btn_new = new System.Windows.Forms.Button();
- this.statusStrip = new System.Windows.Forms.StatusStrip();
- this.groupBox = new System.Windows.Forms.GroupBox();
- this.btn_up = new System.Windows.Forms.Button();
- this.btn_down = new System.Windows.Forms.Button();
- this.btn_left = new System.Windows.Forms.Button();
- this.btn_right = new System.Windows.Forms.Button();
- this.pictureBox = new System.Windows.Forms.PictureBox();
- this.bindingSource1 = new System.Windows.Forms.BindingSource(this.components);
- this.groupBox.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.bindingSource1)).BeginInit();
- this.SuspendLayout();
- //
- // btn_new
- //
- this.btn_new.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
- this.btn_new.Location = new System.Drawing.Point(12, 606);
- this.btn_new.Name = "btn_new";
- this.btn_new.Size = new System.Drawing.Size(75, 47);
- this.btn_new.TabIndex = 5;
- this.btn_new.Text = "new";
- this.btn_new.UseVisualStyleBackColor = true;
- this.btn_new.Click += new System.EventHandler(this.btn_new_Click);
- //
- // statusStrip
- //
- this.statusStrip.ImageScalingSize = new System.Drawing.Size(20, 20);
- this.statusStrip.Location = new System.Drawing.Point(0, 656);
- this.statusStrip.Name = "statusStrip";
- this.statusStrip.Size = new System.Drawing.Size(1074, 22);
- this.statusStrip.TabIndex = 8;
- this.statusStrip.Text = "statusStrip";
- //
- // groupBox
- //
- this.groupBox.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
- this.groupBox.Controls.Add(this.btn_up);
- this.groupBox.Controls.Add(this.btn_down);
- this.groupBox.Controls.Add(this.btn_left);
- this.groupBox.Controls.Add(this.btn_right);
- this.groupBox.Location = new System.Drawing.Point(902, 531);
- this.groupBox.Name = "groupBox";
- this.groupBox.Size = new System.Drawing.Size(172, 108);
- this.groupBox.TabIndex = 9;
- this.groupBox.TabStop = false;
- //
- // btn_up
- //
- this.btn_up.Image = global::PIbd_21_Potapov_N.S._Catamaran_Base.Properties.Resources.arrow_up1;
- this.btn_up.Location = new System.Drawing.Point(59, 0);
- this.btn_up.Name = "btn_up";
- this.btn_up.Size = new System.Drawing.Size(55, 55);
- this.btn_up.TabIndex = 1;
- this.btn_up.UseVisualStyleBackColor = true;
- this.btn_up.Click += new System.EventHandler(this.btn_move_Click);
- //
- // btn_down
- //
- this.btn_down.Image = global::PIbd_21_Potapov_N.S._Catamaran_Base.Properties.Resources.arrow_down1;
- this.btn_down.Location = new System.Drawing.Point(59, 56);
- this.btn_down.Name = "btn_down";
- this.btn_down.Size = new System.Drawing.Size(55, 55);
- this.btn_down.TabIndex = 2;
- this.btn_down.UseVisualStyleBackColor = true;
- this.btn_down.Click += new System.EventHandler(this.btn_move_Click);
- //
- // btn_left
- //
- this.btn_left.Image = global::PIbd_21_Potapov_N.S._Catamaran_Base.Properties.Resources.arrow_left1;
- this.btn_left.Location = new System.Drawing.Point(3, 56);
- this.btn_left.Name = "btn_left";
- this.btn_left.Size = new System.Drawing.Size(55, 55);
- this.btn_left.TabIndex = 3;
- this.btn_left.UseVisualStyleBackColor = true;
- this.btn_left.Click += new System.EventHandler(this.btn_move_Click);
- //
- // btn_right
- //
- this.btn_right.Image = global::PIbd_21_Potapov_N.S._Catamaran_Base.Properties.Resources.arrow_right1;
- this.btn_right.Location = new System.Drawing.Point(115, 56);
- this.btn_right.Name = "btn_right";
- this.btn_right.Size = new System.Drawing.Size(55, 55);
- this.btn_right.TabIndex = 4;
- this.btn_right.UseVisualStyleBackColor = true;
- this.btn_right.Click += new System.EventHandler(this.btn_move_Click);
- //
- // pictureBox
- //
- this.pictureBox.Location = new System.Drawing.Point(-1, 1);
- this.pictureBox.Name = "pictureBox";
- this.pictureBox.Size = new System.Drawing.Size(1063, 524);
- this.pictureBox.SizeMode = System.Windows.Forms.PictureBoxSizeMode.AutoSize;
- this.pictureBox.TabIndex = 0;
- this.pictureBox.TabStop = false;
- //
- // Form
- //
- this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
- this.ClientSize = new System.Drawing.Size(1074, 678);
- this.Controls.Add(this.groupBox);
- this.Controls.Add(this.statusStrip);
- this.Controls.Add(this.btn_new);
- this.Controls.Add(this.pictureBox);
- this.Name = "Form";
- this.Text = "CatamaranTest";
- this.groupBox.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.bindingSource1)).EndInit();
- this.ResumeLayout(false);
- this.PerformLayout();
-
- }
-
- #endregion
-
- private System.Windows.Forms.PictureBox pictureBox;
- private System.Windows.Forms.Button btn_up;
- private System.Windows.Forms.Button btn_down;
- private System.Windows.Forms.Button btn_left;
- private System.Windows.Forms.Button btn_right;
- private System.Windows.Forms.Button btn_new;
- private System.Windows.Forms.StatusStrip statusStrip;
- private System.Windows.Forms.GroupBox groupBox;
- private System.Windows.Forms.BindingSource bindingSource1;
- }
-}
-
diff --git a/PIbd-21_Potapov_N.S._Catamaran_Base.backup/PIbd-21_Potapov_N.S._Catamaran_Base/Form.cs b/PIbd-21_Potapov_N.S._Catamaran_Base.backup/PIbd-21_Potapov_N.S._Catamaran_Base/Form.cs
deleted file mode 100644
index d62e114..0000000
--- a/PIbd-21_Potapov_N.S._Catamaran_Base.backup/PIbd-21_Potapov_N.S._Catamaran_Base/Form.cs
+++ /dev/null
@@ -1,92 +0,0 @@
-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 PIbd_21_Potapov_N.S._Catamaran_Base
-{
- public partial class Form : System.Windows.Forms.Form
- {
- DrawCatamaran catamaranDrawObj;
-
- public Form()
- {
- InitializeComponent();
- pictureBox.Image = new Bitmap(pictureBox.Width, pictureBox.Height);
- }
-
- private void btn_new_Click(object sender, EventArgs e)
- {
- catamaranDrawObj = new DrawCatamaran();
- catamaranDrawObj.Init(80.0f, Color.Black, Directions.Right, 20);
- catamaranDrawObj.SetPosition(20, 50, pictureBox.Width, pictureBox.Height);
-
- RedrawCatamaran();
- }
-
- private void btn_move_Click(object sender, EventArgs e)
- {
- if (catamaranDrawObj == null)
- return;
-
- string btnName = ((Button)sender).Name;
-
- switch (btnName)
- {
- case "btn_up":
- {
- catamaranDrawObj.MoveTransport(Directions.Up);
- }
- break;
- case "btn_down":
- {
- catamaranDrawObj.MoveTransport(Directions.Down);
- }
- break;
- case "btn_left":
- {
- catamaranDrawObj.MoveTransport(Directions.Left);
- }
- break;
- case "btn_right":
- {
- catamaranDrawObj.MoveTransport(Directions.Right);
- }
- break;
- default:
- break;
- }
- RedrawCatamaran();
- }
-
- private void RedrawCatamaran()
- {
- Graphics g = Graphics.FromImage(pictureBox.Image);
- g.Clear(Color.White);
- catamaranDrawObj.DrawTransport(g);
- pictureBox.Invalidate();
- }
-
- private void UpdateStatus()
- {
- if (catamaranDrawObj == null)
- return;
-
- }
-
- private void form_Resize(object sender, EventArgs e)
- {
-
- int oldWidth = pictureBox.Width;
- int oldHeight = pictureBox.Height;
-
- }
-
-
- }
-}
diff --git a/PIbd-21_Potapov_N.S._Catamaran_Base.backup/PIbd-21_Potapov_N.S._Catamaran_Base/Form.resx b/PIbd-21_Potapov_N.S._Catamaran_Base.backup/PIbd-21_Potapov_N.S._Catamaran_Base/Form.resx
deleted file mode 100644
index 32e093f..0000000
--- a/PIbd-21_Potapov_N.S._Catamaran_Base.backup/PIbd-21_Potapov_N.S._Catamaran_Base/Form.resx
+++ /dev/null
@@ -1,126 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 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
-
-
- 141, 20
-
-
\ No newline at end of file
diff --git a/PIbd-21_Potapov_N.S._Catamaran_Base.backup/PIbd-21_Potapov_N.S._Catamaran_Base/PIbd-21_Potapov_N.S._Catamaran_Base.csproj b/PIbd-21_Potapov_N.S._Catamaran_Base.backup/PIbd-21_Potapov_N.S._Catamaran_Base/PIbd-21_Potapov_N.S._Catamaran_Base.csproj
deleted file mode 100644
index 9512766..0000000
--- a/PIbd-21_Potapov_N.S._Catamaran_Base.backup/PIbd-21_Potapov_N.S._Catamaran_Base/PIbd-21_Potapov_N.S._Catamaran_Base.csproj
+++ /dev/null
@@ -1,111 +0,0 @@
-
-
-
-
- Debug
- AnyCPU
- {24A5D1D2-70CE-427E-B116-45FEFED6FD09}
- WinExe
- PIbd_21_Potapov_N.S._Catamaran_Base
- PIbd-21_Potapov_N.S._Catamaran_Base
- v4.7.2
- 512
- true
- true
-
-
- AnyCPU
- true
- full
- false
- bin\Debug\
- DEBUG;TRACE
- prompt
- 4
-
-
- AnyCPU
- pdbonly
- true
- bin\Release\
- TRACE
- prompt
- 4
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Form
-
-
- Form.cs
-
-
-
-
- Form.cs
-
-
- ResXFileCodeGenerator
- Resources.Designer.cs
- Designer
-
-
- True
- Resources.resx
- True
-
-
- SettingsSingleFileGenerator
- Settings.Designer.cs
-
-
- True
- Settings.settings
- True
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/PIbd-21_Potapov_N.S._Catamaran_Base.backup/PIbd-21_Potapov_N.S._Catamaran_Base/Program.cs b/PIbd-21_Potapov_N.S._Catamaran_Base.backup/PIbd-21_Potapov_N.S._Catamaran_Base/Program.cs
deleted file mode 100644
index ca1e634..0000000
--- a/PIbd-21_Potapov_N.S._Catamaran_Base.backup/PIbd-21_Potapov_N.S._Catamaran_Base/Program.cs
+++ /dev/null
@@ -1,22 +0,0 @@
-using System;
-using System.Collections.Generic;
-using System.Linq;
-using System.Threading.Tasks;
-using System.Windows.Forms;
-
-namespace PIbd_21_Potapov_N.S._Catamaran_Base
-{
- static class Program
- {
- ///
- /// The main entry point for the application.
- ///
- [STAThread]
- static void Main()
- {
- Application.EnableVisualStyles();
- Application.SetCompatibleTextRenderingDefault(false);
- Application.Run(new Form());
- }
- }
-}
diff --git a/PIbd-21_Potapov_N.S._Catamaran_Base.backup/PIbd-21_Potapov_N.S._Catamaran_Base/Properties/AssemblyInfo.cs b/PIbd-21_Potapov_N.S._Catamaran_Base.backup/PIbd-21_Potapov_N.S._Catamaran_Base/Properties/AssemblyInfo.cs
deleted file mode 100644
index 6b9b7b5..0000000
--- a/PIbd-21_Potapov_N.S._Catamaran_Base.backup/PIbd-21_Potapov_N.S._Catamaran_Base/Properties/AssemblyInfo.cs
+++ /dev/null
@@ -1,36 +0,0 @@
-using System.Reflection;
-using System.Runtime.CompilerServices;
-using System.Runtime.InteropServices;
-
-// General Information about an assembly is controlled through the following
-// set of attributes. Change these attribute values to modify the information
-// associated with an assembly.
-[assembly: AssemblyTitle("PIbd-21_Potapov_N.S._Catamaran_Base")]
-[assembly: AssemblyDescription("")]
-[assembly: AssemblyConfiguration("")]
-[assembly: AssemblyCompany("HP Inc.")]
-[assembly: AssemblyProduct("PIbd-21_Potapov_N.S._Catamaran_Base")]
-[assembly: AssemblyCopyright("Copyright © HP Inc. 2022")]
-[assembly: AssemblyTrademark("")]
-[assembly: AssemblyCulture("")]
-
-// Setting ComVisible to false makes the types in this assembly not visible
-// to COM components. If you need to access a type in this assembly from
-// COM, set the ComVisible attribute to true on that type.
-[assembly: ComVisible(false)]
-
-// The following GUID is for the ID of the typelib if this project is exposed to COM
-[assembly: Guid("24a5d1d2-70ce-427e-b116-45fefed6fd09")]
-
-// Version information for an assembly consists of the following four values:
-//
-// Major Version
-// Minor Version
-// Build Number
-// Revision
-//
-// You can specify all the values or you can default the Build and Revision Numbers
-// by using the '*' as shown below:
-// [assembly: AssemblyVersion("1.0.*")]
-[assembly: AssemblyVersion("1.0.0.0")]
-[assembly: AssemblyFileVersion("1.0.0.0")]
diff --git a/PIbd-21_Potapov_N.S._Catamaran_Base.backup/PIbd-21_Potapov_N.S._Catamaran_Base/Properties/Resources.Designer.cs b/PIbd-21_Potapov_N.S._Catamaran_Base.backup/PIbd-21_Potapov_N.S._Catamaran_Base/Properties/Resources.Designer.cs
deleted file mode 100644
index ed84c79..0000000
--- a/PIbd-21_Potapov_N.S._Catamaran_Base.backup/PIbd-21_Potapov_N.S._Catamaran_Base/Properties/Resources.Designer.cs
+++ /dev/null
@@ -1,143 +0,0 @@
-//------------------------------------------------------------------------------
-//
-// This code was generated by a tool.
-// Runtime Version:4.0.30319.42000
-//
-// Changes to this file may cause incorrect behavior and will be lost if
-// the code is regenerated.
-//
-//------------------------------------------------------------------------------
-
-namespace PIbd_21_Potapov_N.S._Catamaran_Base.Properties {
- using System;
-
-
- ///
- /// A strongly-typed resource class, for looking up localized strings, etc.
- ///
- // This class was auto-generated by the StronglyTypedResourceBuilder
- // class via a tool like ResGen or Visual Studio.
- // To add or remove a member, edit your .ResX file then rerun ResGen
- // with the /str option, or rebuild your VS project.
- [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "16.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() {
- }
-
- ///
- /// Returns the cached ResourceManager instance used by this class.
- ///
- [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("PIbd_21_Potapov_N.S._Catamaran_Base.Properties.Resources", typeof(Resources).Assembly);
- resourceMan = temp;
- }
- return resourceMan;
- }
- }
-
- ///
- /// Overrides the current thread's CurrentUICulture property for all
- /// resource lookups using this strongly typed resource class.
- ///
- [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
- internal static global::System.Globalization.CultureInfo Culture {
- get {
- return resourceCulture;
- }
- set {
- resourceCulture = value;
- }
- }
-
- ///
- /// Looks up a localized resource of type System.Drawing.Bitmap.
- ///
- internal static System.Drawing.Bitmap arrow_down {
- get {
- object obj = ResourceManager.GetObject("arrow_down", resourceCulture);
- return ((System.Drawing.Bitmap)(obj));
- }
- }
-
- ///
- /// Looks up a localized resource of type System.Drawing.Bitmap.
- ///
- internal static System.Drawing.Bitmap arrow_down1 {
- get {
- object obj = ResourceManager.GetObject("arrow_down1", resourceCulture);
- return ((System.Drawing.Bitmap)(obj));
- }
- }
-
- ///
- /// Looks up a localized resource of type System.Drawing.Bitmap.
- ///
- internal static System.Drawing.Bitmap arrow_left {
- get {
- object obj = ResourceManager.GetObject("arrow_left", resourceCulture);
- return ((System.Drawing.Bitmap)(obj));
- }
- }
-
- ///
- /// Looks up a localized resource of type System.Drawing.Bitmap.
- ///
- internal static System.Drawing.Bitmap arrow_left1 {
- get {
- object obj = ResourceManager.GetObject("arrow_left1", resourceCulture);
- return ((System.Drawing.Bitmap)(obj));
- }
- }
-
- ///
- /// Looks up a localized resource of type System.Drawing.Bitmap.
- ///
- internal static System.Drawing.Bitmap arrow_right {
- get {
- object obj = ResourceManager.GetObject("arrow_right", resourceCulture);
- return ((System.Drawing.Bitmap)(obj));
- }
- }
-
- ///
- /// Looks up a localized resource of type System.Drawing.Bitmap.
- ///
- internal static System.Drawing.Bitmap arrow_right1 {
- get {
- object obj = ResourceManager.GetObject("arrow_right1", resourceCulture);
- return ((System.Drawing.Bitmap)(obj));
- }
- }
-
- ///
- /// Looks up a localized resource of type System.Drawing.Bitmap.
- ///
- internal static System.Drawing.Bitmap arrow_up {
- get {
- object obj = ResourceManager.GetObject("arrow_up", resourceCulture);
- return ((System.Drawing.Bitmap)(obj));
- }
- }
-
- ///
- /// Looks up a localized resource of type System.Drawing.Bitmap.
- ///
- internal static System.Drawing.Bitmap arrow_up1 {
- get {
- object obj = ResourceManager.GetObject("arrow_up1", resourceCulture);
- return ((System.Drawing.Bitmap)(obj));
- }
- }
- }
-}
diff --git a/PIbd-21_Potapov_N.S._Catamaran_Base.backup/PIbd-21_Potapov_N.S._Catamaran_Base/Properties/Resources.resx b/PIbd-21_Potapov_N.S._Catamaran_Base.backup/PIbd-21_Potapov_N.S._Catamaran_Base/Properties/Resources.resx
deleted file mode 100644
index f5f34a6..0000000
--- a/PIbd-21_Potapov_N.S._Catamaran_Base.backup/PIbd-21_Potapov_N.S._Catamaran_Base/Properties/Resources.resx
+++ /dev/null
@@ -1,145 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 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\arrow_up.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
-
-
- ..\Resources\arrow_right.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
-
-
- ..\Resources\arrow_down.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
-
-
- ..\Resources\arrow_left.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
-
-
- ..\Resources\arrow_down1.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
-
-
- ..\Resources\arrow_left1.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
-
-
- ..\Resources\arrow_right1.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
-
-
- ..\Resources\arrow_up1.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
-
-
\ No newline at end of file
diff --git a/PIbd-21_Potapov_N.S._Catamaran_Base.backup/PIbd-21_Potapov_N.S._Catamaran_Base/Properties/Settings.Designer.cs b/PIbd-21_Potapov_N.S._Catamaran_Base.backup/PIbd-21_Potapov_N.S._Catamaran_Base/Properties/Settings.Designer.cs
deleted file mode 100644
index 5fb5a84..0000000
--- a/PIbd-21_Potapov_N.S._Catamaran_Base.backup/PIbd-21_Potapov_N.S._Catamaran_Base/Properties/Settings.Designer.cs
+++ /dev/null
@@ -1,29 +0,0 @@
-//------------------------------------------------------------------------------
-//
-// This code was generated by a tool.
-// Runtime Version:4.0.30319.42000
-//
-// Changes to this file may cause incorrect behavior and will be lost if
-// the code is regenerated.
-//
-//------------------------------------------------------------------------------
-
-
-namespace PIbd_21_Potapov_N.S._Catamaran_Base.Properties
-{
- [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
- [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "11.0.0.0")]
- internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase
- {
-
- private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings())));
-
- public static Settings Default
- {
- get
- {
- return defaultInstance;
- }
- }
- }
-}
diff --git a/PIbd-21_Potapov_N.S._Catamaran_Base.backup/PIbd-21_Potapov_N.S._Catamaran_Base/Properties/Settings.settings b/PIbd-21_Potapov_N.S._Catamaran_Base.backup/PIbd-21_Potapov_N.S._Catamaran_Base/Properties/Settings.settings
deleted file mode 100644
index 3964565..0000000
--- a/PIbd-21_Potapov_N.S._Catamaran_Base.backup/PIbd-21_Potapov_N.S._Catamaran_Base/Properties/Settings.settings
+++ /dev/null
@@ -1,7 +0,0 @@
-
-
-
-
-
-
-
diff --git a/PIbd-21_Potapov_N.S._Catamaran_Base.backup/PIbd-21_Potapov_N.S._Catamaran_Base/Resources/arrow_down.png b/PIbd-21_Potapov_N.S._Catamaran_Base.backup/PIbd-21_Potapov_N.S._Catamaran_Base/Resources/arrow_down.png
deleted file mode 100644
index 38027b7..0000000
Binary files a/PIbd-21_Potapov_N.S._Catamaran_Base.backup/PIbd-21_Potapov_N.S._Catamaran_Base/Resources/arrow_down.png and /dev/null differ
diff --git a/PIbd-21_Potapov_N.S._Catamaran_Base.backup/PIbd-21_Potapov_N.S._Catamaran_Base/Resources/arrow_left.png b/PIbd-21_Potapov_N.S._Catamaran_Base.backup/PIbd-21_Potapov_N.S._Catamaran_Base/Resources/arrow_left.png
deleted file mode 100644
index 952a0e9..0000000
Binary files a/PIbd-21_Potapov_N.S._Catamaran_Base.backup/PIbd-21_Potapov_N.S._Catamaran_Base/Resources/arrow_left.png and /dev/null differ
diff --git a/PIbd-21_Potapov_N.S._Catamaran_Base.backup/PIbd-21_Potapov_N.S._Catamaran_Base/Resources/arrow_right.png b/PIbd-21_Potapov_N.S._Catamaran_Base.backup/PIbd-21_Potapov_N.S._Catamaran_Base/Resources/arrow_right.png
deleted file mode 100644
index 51d3256..0000000
Binary files a/PIbd-21_Potapov_N.S._Catamaran_Base.backup/PIbd-21_Potapov_N.S._Catamaran_Base/Resources/arrow_right.png and /dev/null differ
diff --git a/PIbd-21_Potapov_N.S._Catamaran_Base.backup/PIbd-21_Potapov_N.S._Catamaran_Base/Resources/arrow_up.png b/PIbd-21_Potapov_N.S._Catamaran_Base.backup/PIbd-21_Potapov_N.S._Catamaran_Base/Resources/arrow_up.png
deleted file mode 100644
index febc548..0000000
Binary files a/PIbd-21_Potapov_N.S._Catamaran_Base.backup/PIbd-21_Potapov_N.S._Catamaran_Base/Resources/arrow_up.png and /dev/null differ
diff --git a/PIbd-21_Potapov_N.S._Catamaran_Base.backup/PIbd-21_Potapov_N.S._Catamaran_Base/upgrade.backup b/PIbd-21_Potapov_N.S._Catamaran_Base.backup/PIbd-21_Potapov_N.S._Catamaran_Base/upgrade.backup
deleted file mode 100644
index f21c0da..0000000
--- a/PIbd-21_Potapov_N.S._Catamaran_Base.backup/PIbd-21_Potapov_N.S._Catamaran_Base/upgrade.backup
+++ /dev/null
@@ -1 +0,0 @@
-Backup created at 1663655264 (20.09.2022 6:27:44 +00:00)
\ No newline at end of file