c#实现5分钟倒计时实例

 我来答
咖喱小西瓜
推荐于2017-09-01 · TA获得超过186个赞
知道小有建树答主
回答量:171
采纳率:0%
帮助的人:203万
展开全部
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 WindowsFormsApplication2
{
public partial class Form1 : Form
{
DateTime fiveM = new DateTime();
Timer timer = new Timer();

public Form1()
{
InitializeComponent();
timer.Tick += new EventHandler(timer_Tick);
fiveM = DateTime.Parse("00:05:00");
label1.Text = fiveM.Hour.ToString("00") + ":" + fiveM.Minute.ToString("00") + ":" + fiveM.Second.ToString("00");
timer.Interval = 1000;
timer.Start();
}

void timer_Tick(object sender, EventArgs e)
{
if (fiveM !=Convert.ToDateTime("00:00:00"))
{
fiveM = fiveM.AddSeconds(-1);
label1.Text = fiveM.Hour.ToString("00") + ":" + fiveM.Minute.ToString("00") + ":" + fiveM.Second.ToString("00");
}
else
timer.Stop();
}
}
}
有现成的datetime类干嘛还要复杂化,楼上的?楼主,直接copy就OK,拉一个label
小小小馒头仔
2012-05-28 · TA获得超过449个赞
知道小有建树答主
回答量:609
采纳率:100%
帮助的人:641万
展开全部
可以给个思路你,先获取当前时间,用DateTime。
在当前时间加上5分钟。
开启Timer控件开始计时。
每过1秒钟就执行一次TICK事件。
然后用加上了5分钟的这个时间减去当前时间就是倒计时剩余时间了
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
帐号已注销
推荐于2017-09-20 · TA获得超过1040个赞
知道小有建树答主
回答量:527
采纳率:87%
帮助的人:83.2万
展开全部
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 WindowsFormsApplication2
{
public partial class Form1 : Form
{
DateTime fiveM = new DateTime();
Timer timer = new Timer();

public Form1()
{
InitializeComponent();
timer.Tick += new EventHandler(timer_Tick);
fiveM = DateTime.Parse("00:05:00");
label1.Text = fiveM.Hour.ToString("00") + ":" + fiveM.Minute.ToString("00") + ":" + fiveM.Second.ToString("00");
timer.Interval = 1000;
timer.Start();
}

void timer_Tick(object sender, EventArgs e)
{
if (fiveM !=Convert.ToDateTime("00:00:00"))
{
fiveM = fiveM.AddSeconds(-1);
label1.Text = fiveM.Hour.ToString("00") + ":" + fiveM.Minute.ToString("00") + ":" + fiveM.Second.ToString("00");
}
else
timer.Stop();
}
}
}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
Ben
2012-05-28 · 知道合伙人软件行家
Ben
知道合伙人软件行家
采纳数:860 获赞数:2875
认真回答者.

向TA提问 私信TA
展开全部
timer 没一秒执行一次.. 开一个线程. sleep(1000) 同样每一秒执行一次.然后用位图INVOKE到主线程调用窗体内容. 还有让自己SLEEP(1000) 让主线程自己睡1秒. 循环1*60*5 次即可. 方法甚多..
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
nowaycw
2012-05-28
知道答主
回答量:34
采纳率:0%
帮助的人:12.1万
展开全部
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;

namespace WindowsFormsApplication14
{
public partial class Form1 : Form
{
int i = 300,mm,ss;
public Form1()
{
InitializeComponent();
}

private void timer1_Tick(object sender, EventArgs e)
{
i--;
mm = i / 60;
ss = i - mm * 60;
label1.Text = Convert.ToString(mm)+"分"+Convert.ToString(ss)+"秒";

}

private void Form1_Load(object sender, EventArgs e)
{
timer1.Start();
}
}
}
这个是所有的代码,控件自己会弄把
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 1条折叠回答
收起 更多回答(3)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式