using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace WindowsFormsApplication2
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void timer1_Tick(object sender, EventArgs e)
{
label1.Text = DateTime.Now.ToString();
timer1.Start();
}
private void label1_Click(object sender, EventArgs e)
{
}
}
}
C#--利用Timer控件设计一个电子时钟。
最新推荐文章于 2025-03-16 13:58:53 发布