mirror of
https://github.com/2dust/v2rayN.git
synced 2025-05-02 21:28:51 +00:00
21 lines
No EOL
586 B
C#
21 lines
No EOL
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));
|
|
}
|
|
}
|
|
} |