• 大小: 13KB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2021-05-17
  • 语言: C#
  • 标签: csharp  

资源简介

C# 使用Timer控件显示当前时间! 值得下载看看!资源免费,大家分享!! 更多免费资源 http://ynsky.download.csdn.net/

资源截图

代码片段和文件信息

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;
//Download by http://www.codefans.net
namespace Case10_11
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

        private void timer1_Tick(object sender EventArgs e)
        {
            this.label1.Text = “当前时间是: “ + DateTime.Now.Hour.ToString() +“:“ + DateTime.Now .Minute .ToString () +“:“ +DateTime .Now .Second .ToString () ;
        }

        private void Form1_Load(object sender EventArgs e)
        {
            this.timer1.Enabled = true;
        }

        private void Form1_DoubleClick(object sender EventArgs e)
        {
            this.Close();
            Application.Exit(); 
        }
    }
}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

----------- ---------  ---------- -----  ----

                46496                    16


评论

共有 条评论