📄 program.cs
字号:
namespace Imps.Client.Pc
{
using System;
using System.Net;
using System.Threading;
using System.Windows.Forms;
internal static class Program
{
[STAThread]
private static void Main(string[] args)
{
Thread.CurrentThread.Name = "Imps.Client.Pc MainThread";
Application.EnableVisualStyles();
ServicePointManager.MaxServicePointIdleTime = 0x7530;
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new MainForm(args));
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -