2010年1月28日
摘要: 1.引用System.ServiceProcess命名空间 using System.ServiceProcess;2.声明ServiceController变量private ServiceController _controller;3.假设服务名为ServicesName, 编写开始服务,停止服务,重启服务的代码如下private void StopService(){ this._cont... 阅读全文
posted @ 2010-01-28 11:31 Peter Zhang 阅读(4865) 评论(2) 推荐(1) 编辑
摘要: (1)新创建一个项目,修改Form1的Text属性为testNotifyIcon; (2)向Form1窗口中添加一个NotifyIcon控件,修改其Name属性为 MyNotifyIcon。修改其Text属性为 testNotifyIcon,与应用程序的标题相同。这是因为NotifyIcon显示在系统托盘中时,Text属性中保存的 文本为鼠标移动到程序图标上时的提示信息。修改Icon属性,为Not... 阅读全文
posted @ 2010-01-28 11:09 Peter Zhang 阅读(7054) 评论(0) 推荐(0) 编辑