Program类
2023-11-02 本文已影响0人
毛仑上保罗先生
internal static class Program
{
/// <summary>
/// 应用程序的主入口点。
/// </summary>
[STAThread] //COM线程模式为单线程
static void Main()
{
//启用应用程序可视样式
Application.EnableVisualStyles();
//设置文本兼容默认值: GDI +如果为true,则GDI为false
Application.SetCompatibleTextRenderingDefault(false);
//启动应用程序的窗体
Application.Run(new Form1());
}
}