摘要: 二. 设计获取系统信息的Windows窗体 1. 界面的设计 向工程中增加一个Windows窗体并向窗体中添加如下控件: 2. 在窗体类中引用API函数 using System.Runtime.InteropServices ;using System.Text ;[ DllImport("kernel32") ] public static extern void GetWindo... 阅读全文
posted @ 2005-12-15 18:02 接云网络 阅读(293) 评论(0) 推荐(0) 编辑
摘要: 许多软件都有自动关机功能,特别是在长时间下载的时候,这个功能可是使你不用以守候在计算机前面,而电脑却能按照您事先的设定自动关闭。现在我们用visual C#来编写一个多功能的关机程序。该程序具有:定时关机、倒计时关机、关机提醒、系统信息获取等四项功能, 可设定关机时间精确到秒。并且让你很快掌握Visual C#中对API的操作程序。 一. 设计关闭Windows窗体 1. 界面的设计 新... 阅读全文
posted @ 2005-12-15 18:01 接云网络 阅读(376) 评论(0) 推荐(0) 编辑
摘要: 1、DateTime 数字型 System.DateTime currentTime=new System.DateTime(); 1.1 取当前年月日时分秒 currentTime=System.DateTime.Now; 1.2 取当前年 int 年=currentTime.Year; 1.3 取当前月 int 月=currentTime.Month; 1.4 取当前日 int 日=curre... 阅读全文
posted @ 2005-12-15 17:45 接云网络 阅读(301) 评论(0) 推荐(0) 编辑