DockTool/Program.cs

23 lines
514 B
C#
Raw Normal View History

2024-12-12 14:03:53 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Windows.Forms;
namespace FlyDockTool
{
internal static class Program
{
/// <summary>
/// 应用程序的主入口点。
/// </summary>
[STAThread]
static void Main()
2024-12-12 14:14:23 +08:00
{
//测试11111
2024-12-12 14:03:53 +08:00
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
2024-12-12 14:13:31 +08:00
Application.Run(new mainForm()); ;
2024-12-12 14:03:53 +08:00
}
}
}