码迷,mamicode.com
首页 > 其他好文 > 详细

Stopwatch Timer 时间 计时器 ElapsedMilliseconds

时间:2020-01-11 18:26:41      阅读:272      评论:0      收藏:0      [点我收藏+]

标签:blog   watch   idt   minutes   alt   timer   obj   oid   line   

技术图片



/// <summary>
/// 转换成时间 00:00:00
/// </summary>
/// <param name="duration"></param>
/// <returns></returns>
public string time(long duration)
{
    TimeSpan t = new TimeSpan(0, 0, Convert.ToInt32(duration));
    //string str = "00:00:00";
    return   $"{t.Hours:00}:{t.Minutes:00}:{t.Seconds : 00}";
}

int t = 0;
private void timer1_Tick(object sender, EventArgs e)
{
    t++;
    label4.Text =$"时间:{time(t)}";
}



(sw.ElapsedMilliseconds / 1000f).ToString("0.000 sec")

Stopwatch Timer 时间 计时器 ElapsedMilliseconds

标签:blog   watch   idt   minutes   alt   timer   obj   oid   line   

原文地址:https://www.cnblogs.com/xe2011/p/12180436.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!