摘要:
silverlight里面实现和Winform、wpf中定时器控件类似的功能,用 DispatcherTimer类。//TimeSpan时间间隔对象。//FromSeconds间隔时间,默认为s。//Start 定时器开始//Tick 超过定时器间隔时发生 DispatcherTimer m_DispatcherDateTimer = new DispatcherTimer(); m_DispatcherDateTimer.Interval = TimeSpan.FromSeconds(1); m_DispatcherDateTimer.Start(); m_DispatcherDateTi. 阅读全文
posted @ 2013-04-23 17:34
残存的梦想
阅读(245)
评论(0)
推荐(0)
浙公网安备 33010602011771号