using System; using System.Collections.Generic; using System.Windows.Forms; //////////////////////////////////////////////////////////////////////////////////////////////////// // // //开发说明 // V0.1 2023/04/10 //--------------------------------------- //1、初版构建 //2、调用流程: 开启TCP服务端、连接到平台轴启用—》hexcal软件连接,开启校准通讯流程—》移动至到位后反馈—》hexcal逻辑处理—》hexcal校准完成关系—》软件关闭 // // // // // // // // // // // // // //////////////////////////////////////////////////////////////////////////////////////////////////// namespace HexcalMC { static class Program { [STAThread] static void Main() { Application.EnableVisualStyles(); Application.SetCompatibleTextRenderingDefault(false); Application.Run(new MainFrom()); } } }