步骤 1 - 创建一个新的 Windows 服务应用程序。步骤 2 - 为了运行 Windows 服务,您需要安装安装程序,这会将其注册到服务控制管理器。右键单击 Service1.cs[设计] 并添加安装程序。步骤 3 - 右键单击 ProjectInstaller.cs [设计] 并选择查看代码。using System; using System.Collections; using System.Collections.Generic; using System.ComponentModel; using System.Configuration.Install; using System.Linq; using System.Threading.Tasks; namespace DemoWindowsService{ [RunInstaller(true)] public partial class ProjectInstaller : System.Configuration.Install.Installer{ public ProjectInstaller(){ InitializeComponent(); } } }按 F12 并转到 InitializeComponent 类的实现。添加……阅读更多