WPF 不支持從調度程序線程之外的線程對其 SourceCollection 進行的更改

該問題出如今WPF中的VM類中,ObservableCollection類型,該類型的 CollectionView 不支持從調度程序線程之外的線程對其 SourceCollection 進行的更改,解決辦法:html

ThreadPool.QueueUserWorkItem(delegate
            {
                SynchronizationContext.SetSynchronizationContext(new
                    DispatcherSynchronizationContext(System.Windows.Application.Current.Dispatcher));
                SynchronizationContext.Current.Post(pl =>
                {
                    //裏面寫真正的業務內容
                    _FrameContents.Add(frame);
                    _DataGridMain.ScrollIntoView(_FrameContents[_FrameContents.Count - 1], _DataGridMain.Columns[0]);
                }, null);
            });

其中 _FrameContents 就是public ObservableCollection<FrameContent> _FrameContents 類型。spa

By:https://www.cnblogs.com/jiangyan219/articles/9248947.html線程

相關文章
相關標籤/搜索