Лабораторная работа 5

This commit is contained in:
nikbel2004@outlook.com 2023-11-13 02:26:30 +04:00
parent 02559b8c72
commit 525a6a7d7c
4 changed files with 4 additions and 4 deletions

View File

@ -1,6 +1,6 @@
namespace Tank namespace Tank
{ {
partial class CollectionsFrame partial class FormTanksCollections
{ {
/// <summary> /// <summary>
/// Required designer variable. /// Required designer variable.

View File

@ -13,12 +13,12 @@ using System.Windows.Forms;
namespace Tank namespace Tank
{ {
public partial class CollectionsFrame : Form public partial class FormTanksCollections : Form
{ {
private readonly TanksGenericStorage _storage; private readonly TanksGenericStorage _storage;
// Конструктор // Конструктор
public CollectionsFrame() public FormTanksCollections()
{ {
InitializeComponent(); InitializeComponent();
_storage = new TanksGenericStorage(DrawTank.Width, DrawTank.Height); _storage = new TanksGenericStorage(DrawTank.Width, DrawTank.Height);

View File

@ -11,7 +11,7 @@ namespace Tank
// To customize application configuration such as set high DPI settings or default font, // To customize application configuration such as set high DPI settings or default font,
// see https://aka.ms/applicationconfiguration. // see https://aka.ms/applicationconfiguration.
ApplicationConfiguration.Initialize(); ApplicationConfiguration.Initialize();
Application.Run(new CollectionsFrame()); Application.Run(new FormTanksCollections());
} }
} }
} }