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?
相关问题
- Sorting 3 numbers without branching [closed]
- Graphics.DrawImage() - Throws out of memory except
- Why am I getting UnauthorizedAccessException on th
- 求获取指定qq 资料的方法
- How to know full paths to DLL's from .csproj f
DispatcherTimer
is what you are looking forDifferent timers for different needs. Roughly...
DispatcherTimer - When you want work to be executed on the UI thread.
ThreadPoolTimer - When you want work to be executed on a background thread.