在你的WinForm上运行一个数字时钟

本文关键字:一个 数字 时钟 WinForm 运行 | 更新日期: 2023-09-27 18:19:01

嗨,我必须设计一个Windows窗体,其中有一个简单的文本框。文本框包含一个类似定时器的文本(00:00格式)。

我想每秒刷新页面,并使文本框的内容相应改变。(就像一个数字时钟,运行一个小时!)。

我发现我需要使用System.Windows.Forms.Timer类,我已经从工具箱中删除了一个Timer项目到我的表单。

下一步……我是否需要使用Thread.Sleep(1000)功能…有什么想法吗?

这是我一直在尝试的代码块。我知道程序中哪里出了问题,thread.sleep()部分甚至使我的代码运行更糟。我尝试了定时器的东西在工具箱,但无法通过。(当我运行代码,它编译成功,然后应用程序冻结了一个小时,由于肮脏的for - loops)帮助!!

  public  partial class Form1 : Form
{
    Button b = new Button();
    TextBox tb = new TextBox();
    //System.Windows.Forms.Timer timer1 = new System.Windows.Forms.Timer();
    public Form1()
    {
        b.Click += new EventHandler(b_click);
        b.Text = "START";
        tb.Text = "00 : 00";
        //timer1.Enabled = true;
        //timer1.Interval = 1000;
        tb.Location = new Point(100, 100);
        this.Controls.Add(tb);
        this.Controls.Add(b);
        InitializeComponent();
    }
    private void refreshTimer_Tick()
    {
       for (int i = 0; i < 60; i++)
        {
            for (int j = 0; j < 60; j++)
            {
                Thread.Sleep(500);
                string TempTime = string.Format("{0:00} : {1:00}",i,j);
                tb.Text = TempTime;                    
                Thread.Sleep(500);
            }
        }
    }
    public void b_click(object sender, EventArgs e)
    {
        refreshTimer_Tick();
    }
}

在你的WinForm上运行一个数字时钟

设置定时器和刷新周期。(1秒)

timer1.Enabled = true;
timer1.Interval = 1000;

然后你需要实现你希望计时器每1秒做的事情:

private void timer1_Tick(object sender, EventArgs e)
{
    DigiClockTextBox.Text = DateTime.Now.TimeOfDay.ToString();
}