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
var timer = new DispatcherTimer();
timer.Tick += DispatcherTimerEventHandler;
timer.Interval = new TimeSpan(0,0,0,1);
timer.Start();
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With