kv4p-sharp/RadioGUI/Program.cs

19 lines
520 B
C#
Raw Permalink Normal View History

2024-10-28 00:44:38 +08:00
using RadioControllerApp;
namespace RadioGUI
{
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 FormRadio());
}
}
}