C#丨Timer控件的使用、在状态栏显示当前时间
程序开发
2023-09-11 23:58:07
Timer控件
举例:
- 添加
StatusStrip
状态栏控件 - 添加一个
StatusLabel
用于显示时间
- 拖入
Timer
控件 - 将
Enabled
属性设置为True,将Interval
属性设置为1000(1秒) - 编辑
Tick
事件
private void timer1_Tick(object sender, EventArgs e){toolStripStatusLabel2.Text = DateTime.Now.ToString();}
效果:
标签:
上一篇:
Django Vue ElementUI通用后台权限管理系统
下一篇:
相关文章
-
无相关信息