I'm trying to write a win phone 7 app for the first time - is there a timer control similar to the one for winforms? Or is there a way to get that type of functionality?
标签:
windows-phone-7
相关问题
- An error is occur when we use navigation to move o
- binding font-awesome character in XAML to Text
- Windows Phone 7 call ASMX web service
- Can windows phone 7 microphone detect frequencies
- How to show/hide (with animation if possible) a Ch
相关文章
- Working with hmacsha256 in windows store app
- WP7 Alert dialog
- Add Service Reference and Add Web Reference?
- Scrollviewer & SIP Issue (WP7.5 Mango)
- Database for Windows Phone 7 [closed]
- Windows phone 7: how to post tweet to twitter
- How to Play youtube videos in windows phone 7?
- Passing objects between classes in Windows Phone/C
DispatchTimer is a good option as is Timer.
It's worth being familiar with the differences and assessing which is more suitable for you.
Convenience (DispatchTimer for UI updates) or Accuracy (Timer for predictability) is the crux of the decision.
Timer Class (System.Threading)
DispatcherTimer Class (System.Windows.Threading)
You can use System.Windows.Threading.DispatcherTimer.