文件名称:数字时钟,动态显示当前时间,C#源代码
文件大小:2.47MB
文件格式:RAR
更新时间:2012-04-22 04:34:03
数字时钟,动态显示当前时间,C#源代码
数字时钟,动态显示当前时间,C#源代码 public string ProcessTime() { string sTime; // Get the current time int iHour = DateTime.Now.Hour; int iMin = DateTime.Now.Minute; int iSec = DateTime.Now.Second; // Format the current time into a string... sTime = (iHour < 10) ? "0" + iHour.ToString() : iHour.ToString(); sTime += ":" + ( (iMin < 10) ? "0" + iMin.ToString() : iMin.ToString() ); sTime += ":" + ( (iSec < 10) ? "0" + iSec.ToString() : iSec.ToString() ); return sTime; } VisualStudio2008创建
【文件预览】:
数字时钟
----DigitalClock()
--------Form1.cs(1KB)
--------bin()
--------obj()
--------Properties()
--------Program.cs(493B)
--------Form1.Designer.cs(3KB)
--------DigitalClock.csproj(4KB)
--------Form1.resx(6KB)
----勾月桌面管理系统()
--------勾月桌面管理系统VB6.0版()
--------勾月桌面管理系统(.net版)()
--------说明.txt(290B)
----DigitalClock.sln(926B)
----readme.txt(668B)
----DigitalClock.suo(15KB)