C# 简单倒计时器

简单实现1-99秒倒计时器,底部存在进度条


摁下开始计时按钮可以开始计时,按钮变为停止计时,再次按下按钮,可停止计时,按钮变为继续计时。


若起始下拉框未选择初始值,提示选择时间


若时间计时完成,提示时间完成。

 


 

C# 简单倒计时器_第1张图片

C# 简单倒计时器_第2张图片

C# 简单倒计时器_第3张图片

 

 

代码如下:

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;

namespace WindowsFormsApp1
{
    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 button1_Click(object sender, EventArgs e)
        {
          
          

            if(button1.Text == "开始计时") 
                if (comboBox1.Text == ""&&count ==0)

                {
                    MessageBox.Show("请选择时间!", "提示!");
                }
                else
                {
                    string str = comboBox1.Text;//将下拉框内容添加到一个变量中
                    time = Convert.ToInt16(str.Substring(0, 2));
                    progressBar1.Maximum = time;
                    timer1.Start();
                    button1.Text = "停止计时";
                }
            else if (button1.Text == "停止计时")
            {
                timer1.Stop();
                progressBar1.Value = count;
                button1.Text = "继续计时";

            }
            else
            {
                timer1.Start();
                button1.Text = "停止计时";

            }

        }

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

 

你可能感兴趣的:(C#简单应用)