C#在textbox中显示实时时间

时间:2021-04-16 00:55:09

PC环境win10,编译器visual studio2015

 Timer time1 =new Timer();

load事件里写

  this.time1.Interval = 1000;
this.time1.Tick += new System.EventHandler(this.time1_Tick);
this.time1.Start();
private void time1_Tick(object sender, EventArgs e)
{
textBox2.Text = DateTime.Now.ToString();
}
timer1.Interval  获取或设置在相对于上一次发生的 Tick 事件引发  Tick 事件之前的时间(以毫秒为单位)。

Tick 事件是指当指定的计时器间隔已过去而且计时器处于启用状态时发生。


源码免费下载地址:点击下载