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