你如何在C#和MVVM实现异步操作

你如何在C#和MVVM实现异步操作

本文介绍了你如何在C#和MVVM实现异步操作?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

喜的是落实在WPF和MVVM非同步操作最简单的方法,让我们说,如果用户如果用户点击进入时,在现场我现在要启动一个命令,然后恢复,而线程会做一些搜索操作,然后回来更新属性,以便通知可以更新绑定。

hi what is the easiest way to implement asynch operations on WPF and MVVM, lets say if user if user hits enter when on a field i want to launch a command and then return back while a thread will do some search operations and then come back and update the properties so notification can update the bindings.

谢谢!

推荐答案

怎么样的实例在虚拟机上打电话给你的命令?

How about a BackgroundWorker instance to call your command on the VM ?

更新:
刮开上面的建议..有一个关于MVVM在线视频贾森Dolinger ..我建议你看一看这一点。这是其中的观点是薄更清洁的方式/并无持有任何线程code。

Update:Scratch the above suggestion.. There's an online video on MVVM by Jason Dolinger.. I recommend you take a look at that. It's a cleaner way where the view is thin/ does not hold any threading code.

要总结一下:


  • 的VM构造函数缓存Dispatcher.CurrentDispatcher对象(主线程)。

  • 更新后备存储(结果)时,使用
    _dispatcher.BeginInvoke(()=> _results.AddRange(项))。,使得UI正确更新

  • the VM ctor caches the Dispatcher.CurrentDispatcher object (main thread).
  • when updating the backing store (results), use_dispatcher.BeginInvoke( () => _results.AddRange( entries) ) so that the UI is updated correctly.

这篇关于你如何在C#和MVVM实现异步操作?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-20 03:06