我已经使用VS2005模板创建了C#服务。它工作正常,但是Windows Services控件小程序中服务的描述为空白。

最佳答案

创建一个ServiceInstaller并设置描述

private System.ServiceProcess.ServiceInstaller serviceInstaller =
  new System.ServiceProcess.ServiceInstaller();
this.serviceInstaller.Description = "Handles Service Stuff";

08-27 19:49