17 lines
340 B
C#
17 lines
340 B
C#
using System;
|
|
using System.Windows.Forms;
|
|
|
|
namespace KVMote
|
|
{
|
|
internal static class Program
|
|
{
|
|
[STAThread]
|
|
static void Main()
|
|
{
|
|
Application.SetHighDpiMode(HighDpiMode.PerMonitorV2);
|
|
ApplicationConfiguration.Initialize();
|
|
Application.Run(new Principal());
|
|
}
|
|
}
|
|
}
|