素材巴巴 > 程序开发 >

C#丨Timer控件的使用、在状态栏显示当前时间

程序开发 2023-09-11 23:58:07

Timer控件


举例:

  1. 添加StatusStrip状态栏控件
  2. 添加一个StatusLabel用于显示时间
    在这里插入图片描述
  3. 拖入Timer控件
  4. Enabled属性设置为True,将Interval属性设置为1000(1秒)
  5. 编辑Tick事件
	private void timer1_Tick(object sender, EventArgs e){toolStripStatusLabel2.Text = DateTime.Now.ToString();}
 

效果:
在这里插入图片描述


标签:

素材巴巴 Copyright © 2013-2021 http://www.sucaibaba.com/. Some Rights Reserved. 备案号:备案中。