WinForm中Timer倒计时

本文介绍如何在Windows窗体应用程序中使用Timer控件实现倒计时功能。通过设置Timer控件的时间间隔并利用Tick事件更新显示文本,实现从指定时间开始递减到0的过程。当倒计时结束时,将重新启用按钮。

添加一个Timer控件:

在初始化代码中

       public Form1()
        {
            InitializeComponent();
            button_Read.Enabled = false;
            button_Start.Enabled = false;
            timer1.Enabled = true;
            timer1.Interval = 1000;
            timer1.Start();
        }

双击Timer控件,在其事件中

  private void timer1_Tick(object sender, EventArgs e)
        {
            string time = button_Read.Text;
            string[] arr = time.Split(':');
            if (arr.Length == 2)
            {
                int min, second;
                if (int.TryParse(arr[0], out min) && int.TryParse(arr[1], out second))
                {
                    second--;
                    if (second < 0)
                    {
                        second = 59;
                        min--;
                    }
                    button_Read.Text = min + ":" + second;
                    button_Start.Text = min + ":" + second;

                    if (min ==0 && second ==0 )
                    {
                        button_Read.Text = "读取ini.txt";
                        button_Start.Text = "开始测试";
                        button_Read.Enabled = true;
                        button_Start.Enabled = true;
                    }
                }
            }
        }

 

转载于:https://www.cnblogs.com/kennyliu/p/3726453.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值