using System; using System.Windows.Forms; namespace XP.Hardware.RaySource.Comet.Host { /// /// Host 进程入口点 /// 以系统托盘方式运行,无主界面窗口 /// static class Program { [STAThread] static void Main(string[] args) { Application.EnableVisualStyles(); Application.SetCompatibleTextRenderingDefault(false); Application.Run(new XplorePlaneCometHost()); } } }