加Timer控件 timer1 编写其Tick事件为 private void timer1_Tick(object sender, EventArgs e) { this.toolStripStatusLabel3.Text = "系统当前时间:" + DateTime.Now.ToString("yyyy-MM-dd hh:mm:ss"); } 在Form的Load事件中 对timer1进行相关设置: private void MainForm_Load(object sender, EventArgs e) { this.toolStripSt