(C#)Windows Forms Service 创建,使用,跟踪

今天综合网上的一些信息,成功创建Windows服务,并在机器上运行成功,下面讲述以下操作步骤。

1.创建解决方案,本程序在VS2010开发工具下演示。

(C#)Windows Forms Service 创建,使用,跟踪_第1张图片

2.创建完成后,你会发现在解决方案中存在如下图的文件。

(C#)Windows Forms Service 创建,使用,跟踪_第2张图片

此文件用于存放你想要的操作。

3.具体代码如下。

(C#)Windows Forms Service 创建,使用,跟踪_第3张图片

很简单的代码,每隔一秒在文本中显示一次当前时间

4.在设计界面

 

(C#)Windows Forms Service 创建,使用,跟踪_第4张图片

5.(C#)Windows Forms Service 创建,使用,跟踪_第5张图片

6.(C#)Windows Forms Service 创建,使用,跟踪_第6张图片

这个名称是你的服务名称。

(C#)Windows Forms Service 创建,使用,跟踪_第7张图片

7.服务完成后,必须安装服务。

找到VS自带的命令工具

(C#)Windows Forms Service 创建,使用,跟踪_第8张图片

(C#)Windows Forms Service 创建,使用,跟踪_第9张图片

8.安装命令

(C#)Windows Forms Service 创建,使用,跟踪_第10张图片

9.查看服务是否存在

(C#)Windows Forms Service 创建,使用,跟踪_第11张图片

10.启动服务

(C#)Windows Forms Service 创建,使用,跟踪_第12张图片

好了,在相应的盘符下已经存在文件。

 

详细文章请结合http://www.cnblogs.com/tuyile006/archive/2006/11/27/573654.html

                            http://www.csharpwin.com/csharpspace/5575r154.shtml 

你可能感兴趣的:(WinForm)