C#编程记录程序运行时间源代码「建议收藏」

C#编程记录程序运行时间源代码「建议收藏」C#编程记录程序运行时间源代码程序界面代码:using System;using System.Collections.Generic;usin

大家好,欢迎来到IT知识分享网。

C#编程记录程序运行时间源代码

C#编程记录程序运行时间源代码「建议收藏」

程序界面

代码:

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

namespace WindowsFormsApplication1
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

        private void Form1_Load(object sender, EventArgs e)
        {
            DateTime timeStart = DateTime.Now;
            Thread th = new Thread
                (
                    () =>
                    {
                        while (true)
                        {
                            TimeSpan sjjg =DateTime.Now-timeStart;
                            Invoke
                            ((MethodInvoker)
                                (()=>
                                {
                                    this.Refresh();                                 
                                    Graphics gr = CreateGraphics();
                                    gr.DrawString("程序已经运行:" + string.Format("{0}日{1}时{2}分{3}秒", sjjg.Days,sjjg.Hours,sjjg.Minutes,sjjg.Seconds), new Font("黑体", 15), Brushes.Blue, new Point(150, 100));
                                }
                                )
                            );
                            Thread.Sleep(1000);
                        }
                    }
                );
            th.IsBackground = true;
            th.Start();
        }

        private void button1_Click(object sender, EventArgs e)
        {
            Close();
        }
    }
}

IT知识分享网

结语:

学会使用() =>运算表达式,创建图像对象,使用DrawString方法输出字符串,了解线程和委托类型。

喜欢的请关注收藏!

免责声明:本站所有文章内容,图片,视频等均是来源于用户投稿和互联网及文摘转载整编而成,不代表本站观点,不承担相关法律责任。其著作权各归其原作者或其出版社所有。如发现本站有涉嫌抄袭侵权/违法违规的内容,侵犯到您的权益,请在线联系站长,一经查实,本站将立刻删除。 本文来自网络,若有侵权,请联系删除,如若转载,请注明出处:https://yundeesoft.com/6746.html

(0)
上一篇 2022-12-20 21:20
下一篇 2022-12-20 21:40

相关推荐

发表回复

您的邮箱地址不会被公开。 必填项已用 * 标注

关注微信