系统时间还是timer的时间????
系统时间你调用的时候用一个DateTime.Now就可以了。

解决方案 »

  1.   

    timer嘛,就只有计数,要在Lable上实时显示目前的系统时间,你就在timer的tick事件里面改变lable的text属性为DateTime.Now.ToLongTimeString();
      

  2.   

    label1.text=datetime.now.tolongtimestring();
      

  3.   

    timer 事件中
    label1.text = DateTime.Now.ToString();
      

  4.   

    简单,如下一个:
    Label lbl = new Label();
    private void button2_Click(object sender, System.EventArgs e)
    {
    Timer t = new Timer();
    t.Interval = 1000;
    t.Tick +=new EventHandler(t_Tick);
    t.Enabled = true; lbl.Text = DateTime.Now.ToLongTimeString();
    lbl.Name = "lbl";
    lbl.Size = new Size(100,28);
    lbl.Location = new Point(0,this.ClientSize.Height - lbl.Height);
    lbl.Visible = true;
    this.Controls.Add(lbl);
    } private void t_Tick(object sender, EventArgs e)
    {
    lbl.Text = DateTime.Now.ToLongTimeString();
    }
      

  5.   

    timer嘛,就只有计数,要在Lable上实时显示目前的系统时间,你就在timer的tick事件里面改变lable的text属性为DateTime.Now.ToLongTimeString();
    这样就可以实现与系统时间的同步