I am developing a game in which I have to implement timer for showing the time that has elapsed. How can I do that?
相关问题
- Inheritance impossible in Windows Runtime Componen
- Timer vs. repetitive background worker
- Replacing or recreating a file in Windows 8 RT kee
- setInterval doesn't slow down on inactive tab
- Draw waveform from MP3 stream in C# on WinRT
相关文章
- Show flyout using BottomAppBar
- Get English exception message instead of local lan
- How to remove an element from an IGrouping
- Exception when reading text from the file using Fi
- Is the HPET directly accessible in Windows?
- HttpUtility.HtmlDecode in WinRT
- Building Windows 8 Metro App on Windows 7 with Vis
- Blinking Button for Simon Says
Did you try to use
DispatcherTimer
in namespaceWindows.UI.Xaml
?If this Timer doesn't fit to your needs, please describe why and what your requirements are.
The async/await way: