Are there any examples on how to use the Threading portion of MVVM Light? What is the advantage of using the MVVMLight.threading over normal .net threading?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
looks like all threading portion in mvvmlight is this class :
}
and that’s all. Use DispatcherHelper.Initialize() according to comment in static App constructor (wpf) or Application_Startup event handler (Silverlight) – and then u can use DispatcherHelper.CheckBeginInvokeOnUI(Action action)
Regards