2019-12-12 02:04:12 +00:00
|
|
|
|
using System;
|
|
|
|
|
using System.Windows.Forms;
|
|
|
|
|
|
|
|
|
|
namespace v2rayUpgrade
|
|
|
|
|
{
|
2023-04-14 12:49:36 +00:00
|
|
|
|
internal static class Program
|
|
|
|
|
{
|
2019-12-12 02:04:12 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// 应用程序的主入口点。
|
|
|
|
|
/// </summary>
|
|
|
|
|
[STAThread]
|
2023-04-14 12:49:36 +00:00
|
|
|
|
private static void Main(string[] args)
|
2019-12-12 02:04:12 +00:00
|
|
|
|
{
|
|
|
|
|
Application.EnableVisualStyles();
|
2023-01-01 11:42:01 +00:00
|
|
|
|
Application.SetHighDpiMode(HighDpiMode.SystemAware);
|
2023-11-25 13:48:33 +00:00
|
|
|
|
Application.SetHighDpiMode(HighDpiMode.PerMonitorV2);
|
2019-12-12 02:04:12 +00:00
|
|
|
|
Application.SetCompatibleTextRenderingDefault(false);
|
|
|
|
|
Application.Run(new MainForm(args));
|
|
|
|
|
}
|
|
|
|
|
}
|
2023-04-14 12:49:36 +00:00
|
|
|
|
}
|