c# winform窗体,简单倒计时器,按下button后计时器开始运行的代码

 我来答
风起雪落2009
2016-03-31 · TA获得超过1597个赞
知道大有可为答主
回答量:1743
采纳率:74%
帮助的人:382万
展开全部
        private int totalSecond = 299;
        private int tenthSecond = 9;
        private void timer1_Tick(object sender, EventArgs e)
        {
            //---窗体添加一个Label,一个Button,一个Timer--------
            //---5分钟倒计时,---功能单一,还有其他需求可以提。
            int minute = totalSecond / 60;
            int second = totalSecond % 60;
            String str = minute.ToString() + ":" + second.ToString() + ":" + tenthSecond.ToString();
            label1.Text = str;
            tenthSecond--;
            if (tenthSecond == -1)
            {
                tenthSecond = 9;
                totalSecond--;
                if (totalSecond == -1)
                {
                    timer1.Enabled = false;
                    timer3.Enabled = false;
                    label1.Text = "时间到!";
                    label1.ForeColor = Color.FromArgb(255, 0, 0);
                }
            }
        }

        private void button1_Click(object sender, EventArgs e)
        {
            timer1.Enabled = true;
        }
Y渴飞的鱼
2018-04-20
知道答主
回答量:7
采纳率:0%
帮助的人:6003
展开全部
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 WPF01_倒计时
{
    public partial class Form1 : Form
    {
        int count;//用于
        int time;
        public Form1()
        {
            InitializeComponent();
        }

        private void Form1_Load(object sender, EventArgs e)
        {
            int i;
            for(i=1;i<100;i++)//计数范围0—99
            {
                comboBox1.Items.Add(i.ToString() + " 秒");//初始化下拉框内容
            }
        }

        private void timer1_Tick(object sender, EventArgs e)
        {
            count++;//记当前秒
            label3.Text = (time - count).ToString() + " 秒";//显示剩余时间
            progressBar1.Value = count;//设置进度条进度
            if(count==time)
            {
                timer1.Stop();//时间到,停止计时
                System.Media.SystemSounds.Asterisk.Play();//提示音
                MessageBox.Show("时间到了", "提示");//弹出提示框
            }
        }

        private void button1_Click(object sender, EventArgs e)
        {
            string str = comboBox1.Text;//将下拉框内容添加到一个变量中
            time = Convert.ToInt16(str.Substring(0, 2));//得到设定定时值(整型)
            progressBar1.Maximum = time;//进度条的最大值
            timer1.Start();//开始计时
        }
    }
}

时间自己弄,以秒为单位

已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 1条折叠回答
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式