How do I handle thread affinity issues in windows phone 7 when I'm building a multi-threaded application? A simple example is the user kicks of some long running process that is handled in another thread which updates a UI element when it's done. How do I get back to the main thread from the worker thread?
相关问题
- How to let a thread communicate with another activ
- Why it isn't advised to call the release() met
- ThreadPoolTaskScheduler behaviour when pool is ful
- JFX scale image up and down to parent
- Custom TaskScheduler, SynchronizationContext?
相关文章
- Difference between Thread#run and Thread#wakeup?
- Working with hmacsha256 in windows store app
- Java/Spring MVC: provide request context to child
- Threading in C# , value types and reference types
- RMI Threads prevent JVM from exiting after main()
- Algorithm for maximizing coverage of rectangular a
- WP7 Alert dialog
- Is there a way to hide the new HTML5 spinbox contr
You use
Dispatcher.BeginInvoke
. (The same as in desktop Silverlight or WPF.)