Лабораторная работа 5
This commit is contained in:
parent
02559b8c72
commit
525a6a7d7c
@ -1,6 +1,6 @@
|
|||||||
namespace Tank
|
namespace Tank
|
||||||
{
|
{
|
||||||
partial class CollectionsFrame
|
partial class FormTanksCollections
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Required designer variable.
|
/// Required designer variable.
|
@ -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);
|
@ -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());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
Loading…
Reference in New Issue
Block a user