I could not find the Timer when developing a Windows Store App in c#. What is the alternative /new name/way of use of it?
DispatcherTimer is what you are looking for
DispatcherTimer
var timer = new DispatcherTimer(); timer.Tick += DispatcherTimerEventHandler; timer.Interval = new TimeSpan(0,0,0,1); timer.Start();
1.4m articles
1.4m replys
5 comments
57.0k users