标题:获取系统时间
只看楼主
wxiaoer2008
Rank: 1
等 级:新手上路
帖 子:12
专家分:0
注 册:2007-5-18
得分:0 
要想和系统时间同步,要用Timer这个类:
程序代码:
    public partial class Form1 : Form
    {
        Timer timer1= new Timer();
        public Form1()
        {
            InitializeComponent();
            this.timer1.Enabled = true;
            this.timer1.Interval = 200;
            this.timer1.Tick += new System.EventHandler(this.timer1_Tick);
        }

        private void timer1_Tick(object sender, EventArgs e)
        {
            label1.Text=DateTime.Now.ToString();//label1自己从右边拉一个
        }
    }


[[it] 本帖最后由 wxiaoer2008 于 2008-10-9 20:05 编辑 [/it]]

开源部落http://www.
2008-10-09 20:04



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-237162-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.217130 second(s), 7 queries.
Copyright©2004-2025, BCCN.NET, All Rights Reserved