WPF与siverlight通用的定时器

来源:互联网 发布:北斗星导航软件下载 编辑:程序博客网 时间:2024/05/17 12:49

using System.Windows.Threading;


 DispatcherTimer timer = new DispatcherTimer();

 page_load{     

            timer.Interval = new TimeSpan(0, 0, 1);

            timer.Tick += new EventHandler(timer_Tick);

            timer.Start();

}


void timer_Tick(object sender, EventArgs e)
        {

// todo

}

原创粉丝点击