该类型的 CollectionView 不支持从调度程序线程以外的线程对其 SourceCollection 进行的更改。

ObservableCollection<TestModel> Test= new ObservableCollection<TestModel>();
 this.Dispatcher.Invoke((Action)(() => 
{
Test.Add(result);