why?
时间观念要在一点一滴中培养出来,因此无论是在管理员端还是在普通用户端,显示上机时间是必要的。
how?
我用了一个很笨拙的方式,我用label控件拼起来的,如图所示:
代码实现:
//需要三个全局变量
public int currentCount = 0;
public int minCount = 0;
public int hourCount = 0;
下面是时分秒的实现:
private void trLoginTime_Tick(object sender, EventArgs e)
{
currentCount += 1;
this.lblSecord.Text = currentCount.ToString().Trim();
//分钟
if (Convert.ToInt32(lblSecord.Text.Trim()) > 59)
{
minCount += 1;
lblmin.Text = Convert.ToString(minCount);