c# 自己制作一个简单的项目倒计时器_.NET_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > .NET > c# 自己制作一个简单的项目倒计时器

c# 自己制作一个简单的项目倒计时器

 2014/7/17 18:09:18  GC2013  程序员俱乐部  我要评论(0)
  • 摘要:usingSystem;usingSystem.Collections.Generic;usingSystem.ComponentModel;usingSystem.Data;usingSystem.Drawing;usingSystem.Text;usingSystem.Windows.Forms;namespacedate{publicpartialclassForm1:Form{publicForm1(){InitializeComponent();stringst1="2008-11
  • 标签:C# 一个 自己 项目
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;

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

            string st1 = "2008-11-4";//结束的日期
            DateTime dt2 = System.DateTime.Now;//获得今天的日期
            DateTime dt1 = Convert.ToDateTime(st1);//把结束的日期类型转换为DateTime

            string dateTerm = null;//项目剩余时间
            try
            {
                TimeSpan ts1 = new TimeSpan(dt1.Ticks);//将日期转化为可以比较的类型
                TimeSpan ts2 = new TimeSpan(dt2.Ticks);
                TimeSpan ts = ts1.Subtract(ts2).Duration();//结束日期减去当前日期
                //dateTerm = ts.Days.ToString() + "天"
                //        + ts.Hours.ToString() + "小时"
                //        + ts.Minutes.ToString() + "分钟"
                //        + ts.Seconds.ToString() + "秒";

                dateTerm = "离项目结束还有" + ts.Days.ToString() + "";//项目剩余时间

                //MessageBox.Show(dateTerm);

                label1.Text = dateTerm;//显示在Label里
            }
            catch
            {

            }
        }
    }
}

把生成的.exe拖到启动项里就可以每天开机提醒拉

发表评论
用户名: 匿名