DockTool/Program.cs

21 lines
498 B
C#
Raw Normal View History

2024-12-12 14:03:53 +08:00
using System;
using System.Windows.Forms;
namespace FlyDockTool
{
internal static class Program
{
/// <summary>
/// 应用程序的主入口点。
/// </summary>
[STAThread]
static void Main()
2024-12-13 09:40:49 +08:00
{
2024-12-12 14:15:52 +08:00
//测试11111 都是对的收到大大大
2024-12-12 14:03:53 +08:00
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
2024-12-13 09:40:49 +08:00
Application.Run(new mainForm()); ;// gitceshi
2024-12-12 14:03:53 +08:00
}
}
}