This commit is contained in:
Bobbie Hodgetts
2024-05-09 16:42:32 +01:00
parent 270eebca9a
commit b790a7b642
10 changed files with 427 additions and 0 deletions

17
bnhtrade.gui/Program.cs Normal file
View File

@@ -0,0 +1,17 @@
namespace bnhtrade.gui
{
internal static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[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 Form1());
}
}
}