ToolBox/Program.cs
2025-03-12 15:18:23 +08:00

20 lines
505 B
C#

using System;
using System.Windows.Forms;
namespace QuickLauncher
{
internal static class Program
{
[STAThread]
static void Main()
{
// 启用高DPI支持
Application.SetHighDpiMode(HighDpiMode.PerMonitorV2);
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
ApplicationConfiguration.Initialize();
Application.Run(new MainForm());
}
}
}