我已经使用VS2005模板创建了C#服务。它工作正常,但是Windows Services控件小程序中服务的描述为空白。
最佳答案
创建一个ServiceInstaller并设置描述
private System.ServiceProcess.ServiceInstaller serviceInstaller =
new System.ServiceProcess.ServiceInstaller();
this.serviceInstaller.Description = "Handles Service Stuff";