c# winform窗体,简单倒计时器,按下button后计时器开始运行的代码
展开全部
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;
}
展开全部
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();//开始计时
}
}
}
时间自己弄,以秒为单位
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询