mirror of
https://github.com/2dust/v2rayN.git
synced 2025-08-31 07:16:20 +00:00
21 lines
586 B
C#
21 lines
586 B
C#
![]() |
using System;
|
|||
|
using System.Windows.Forms;
|
|||
|
|
|||
|
namespace v2rayUpgrade
|
|||
|
{
|
|||
|
internal static class Program
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// 应用程序的主入口点。
|
|||
|
/// </summary>
|
|||
|
[STAThread]
|
|||
|
private static void Main(string[] args)
|
|||
|
{
|
|||
|
Application.EnableVisualStyles();
|
|||
|
Application.SetHighDpiMode(HighDpiMode.SystemAware);
|
|||
|
Application.SetHighDpiMode(HighDpiMode.PerMonitorV2);
|
|||
|
Application.SetCompatibleTextRenderingDefault(false);
|
|||
|
Application.Run(new MainForm(args));
|
|||
|
}
|
|||
|
}
|
|||
|
}
|