Files
LM-Middleware/HexcalMC/Program.cs
T
zhengxuan.zhang 790f217e62 界面布局设置
2023-10-08 14:12:16 +08:00

42 lines
869 B
C#

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());
}
}
}