首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > .NET > VB Dotnet >

怎样提取系统时间!解决思路

2012-01-19 
怎样提取系统时间!!!!!!我想在VB.NET中提取系统时间这个程序,让它能跟系统的时间一样一秒一秒的走这段代码

怎样提取系统时间!!!!!!
我想在VB.NET中提取系统时间这个程序,让它能跟系统的时间一样一秒一秒的走
这段代码怎么写呀!!!!!1

[解决办法]
用数据绑定的方法的一个实现
public class MyTimer
{
public string Now
{
get
{
return DateTime.Now.ToLongTimeString();
}
}
public event EventHandler NowChanged;
Timer timer = new Timer();
public MyTimer()
{
timer.Interval = 1000;
timer.Enabled = true;
timer.Tick += new EventHandler(timer_Tick);
}

void timer_Tick(object sender, EventArgs e)
{
if (NowChanged != null)
NowChanged(sender, e);
}
}
public partial class Form1 : Form
{
MyTimer mt = new MyTimer();
public Form1()
{
InitializeComponent();
label1.DataBindings.Add(new Binding( "Text ", mt, "Now "));
}
}

热点排行