• 如果将ObservableCollection集合绑定到ListBox或ListView,在另外一个线程中对绑定的数据源进行分组操作,那么控件不会更新为分组。通过以下代码可以实现更新。

    this.Dispatcher.BeginInvoke(DispatcherPriority.Normal, new System.Windows.Forms.MethodInvoker(delegate
          &n...