I have a doubt about windows phone 7 EventDispatcher Thread and UIThread both are same thread or different. If both are different thread then how can i access the UIElement in the delegated Method or callback event method?
Please help me for finding the answer.
No, they’re not the same thread.
If you’re running on any thread other than the UIThread you can access the UI Thread via the
Dispatcher.To check if you’re running on the UI you can use the
CheckAccessmethod.To fire an action on the UI thread you can use
BeginInvoke.