MVVM 轻量级线程示例
有没有关于如何使用 MVVM Light 线程部分的示例?与普通 .net 线程相比,使用 MVVMLight.threading 有何优势?
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?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看起来 mvvmlight 中的所有线程部分都是这个类:
}
仅此而已。根据静态应用程序构造函数(wpf)或Application_Startup事件处理程序(Silverlight)中的注释使用DispatcherHelper.Initialize() - 然后您可以使用DispatcherHelper.CheckBeginInvokeOnUI(Action action)
问候
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