简单的界面布置好后,我们添加一个按钮("获取信息"按钮)的消息处理函数如下:
private void GetInfo_Click(object sender, System.EventArgs e){//调用GetWindowsDirectory和GetSystemDirectory函数分别取得Windows路径和系统路径const int nChars = 128;StringBuilder Buff = new StringBuilder(nChars);GetWindowsDirectory(Buff,nChars);WindowsDirectory.Text = "Windows路径:"+Buff.ToString();GetSystemDirectory(Buff,nChars);SystemDirectory.Text = "系统路径:"+Buff.ToString();//调用GetSystemInfo函数获取CPU的相关信息CPU_INFO CpuInfo;CpuInfo = new CPU_INFO();GetSystemInfo(ref CpuInfo);NumberOfProcessors.Text = "本计算机中有"+CpuInfo.dwNumberOfProcessors.ToString()+"个CPU";ProcessorType.Text = "CPU的类型为"+CpuInfo.dwProcessorType.ToString();ProcessorLevel.Text = "CPU等级为"+CpuInfo.dwProcessorLevel.ToString();OemId.Text = "CPU的OEM ID为"+CpuInfo.dwOemId.ToString();PageSize.Text = "CPU中的页面大小为"+CpuInfo.dwPageSize.ToString();//调用GlobalMemoryStatus函数获取内存的相关信息MEMORY_INFO MemInfo;MemInfo = new MEMORY_INFO();GlobalMemoryStatus(ref MemInfo);MemoryLoad.Text = MemInfo.dwMemoryLoad.ToString()+"%的内存正在使用";TotalPhys.Text = "物理内存共有"+MemInfo.dwTotalPhys.ToString()+"字节";AvailPhys.Text = "可使用的物理内存有"+MemInfo.dwAvailPhys.ToString()+"字节";TotalPageFile.Text = "交换文件总大小为"+MemInfo.dwTotalPageFile.ToString()+"字节";AvailPageFile.Text = "尚可交换文件大小为"+MemInfo.dwAvailPageFile.ToString()+"字节";TotalVirtual.Text = "总虚拟内存有"+MemInfo.dwTotalVirtual.ToString()+"字节";AvailVirtual.Text = "未用虚拟内存有"+MemInfo.dwAvailVirtual.ToString()+"字节";//调用GetSystemTime函数获取系统时间信息SYSTEMTIME_INFO StInfo;StInfo = new SYSTEMTIME_INFO();GetSystemTime(ref StInfo);Date.Text = StInfo.wYear.ToString()+"年"+StInfo.wMonth.ToString()+"月"+StInfo.wDay.ToString()+"日";Time.Text = (StInfo.wHour+8).ToString()+"点"+StInfo.wMinute.ToString()+"分"+StInfo.wSecond.ToString()+"秒";}
在上面的消息处理函数中,我们运用了在程序开始处声明的各个API函数获取了系统的相关信息,并最终在界面上以文本标签的方式显示结果。各个文本标签的命名方式可以参见文后附带的源代码,此处暂略。
最后,运行程序如下:
结束语:
通过本文的学习,我相信稍有API使用基础的开发者可以马上触类旁通,很快掌握Visual C#中对API的操作。上面给出的实例仅仅是一个非常简单的示例程序,不过有兴趣的读者可以进一步完善其功能,做出更完美的系统信息检测程序。