博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
丶动态获取系统当前时间
阅读量:4946 次
发布时间:2019-06-11

本文共 992 字,大约阅读时间需要 3 分钟。

效果图:

代码:

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 Example53

{

    public partial class Form1 : Form

    {

        public Form1()

        {

            InitializeComponent();

        }

        private void Form1_Load(object sender, EventArgs e)

        {

            System.Threading.Thread P_thread =

                new System.Threading.Thread(

                    () => //使用Lambda 表达式

                    {

                        while (true)

                        {

                            this.Invoke(

                                (MethodInvoker)delegate() //操作窗体线程

                                {

                                    this.Refresh();       //窗体刷新

                                    Graphics P_graphics = CreateGraphics(); //创建一个绘图对象 

                                    P_graphics.DrawString("当前系统时间:" +   //绘制系统时间

                                        DateTime.Now.ToString(

                                        "yyyy 年 MM 月 dd 日 HH 时 mm 分 ss 秒"),

                                        new Font("宋体", 15),

                                        Brushes.Blue, new Point(10, 10));

                                }

                                );

                            System.Threading.Thread.Sleep(1000); //睡眠一秒钟

                        }

                    }

            );

            P_thread.IsBackground = true; //将线程设置为后台线程

            P_thread.Start();

        }

        private void Form1_Click(object sender, EventArgs e)

        {

            this.Close();

        }

    }

}

转载于:https://www.cnblogs.com/andy-xsd/archive/2011/10/23/2221944.html

你可能感兴趣的文章
IE无法显示PNG
查看>>
Java中的int和Integer
查看>>
Codeforces Round #375 (Div. 2) ABCDE
查看>>
7、SQL Server索引、表压缩
查看>>
ExcelGenerator 生成excel
查看>>
Linux网络设置(第二版) --互联网寻址过程
查看>>
Qt之QTableView添加复选框(QAbstractTableModel)
查看>>
还是UVa340
查看>>
Layer 初始
查看>>
拜占庭将军问题
查看>>
[Matlab] 双目相机模型仿真程序
查看>>
WordPress常用函数以及各模块源码文件名
查看>>
遍历list集合,并使用remove删除一个元素时,出现list index out of range的解决方法...
查看>>
location匹配
查看>>
C++标准转换运算符(1)
查看>>
GCC & Maker
查看>>
C#winform程序安装时自动卸载新版本覆盖旧版本
查看>>
delphi7 编译程序时报win32.indcu.a病毒的解决方法
查看>>
Specifications查询
查看>>
javascript学习笔记(七)利用javascript来创建和存储cookie
查看>>