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
|
|
|
|
{
|
2024-12-12 14:15:52 +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
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|