我正在单独收集一个任务中的数据,我希望数据将结果与使用<代码>的全球倡议组成部分联系起来。 ObservableCollection<>。 因此,我的准则类似:
private ObservableCollection<MyItem> _items;
public ObservableCollection<MyItem> Items
{
get { return _items; }
set
{
if (_items.Equals(value))
{
return;
}
_items = value;
RaisePropertyChanged("Items");
}
}
private void LoadData()
{
Task task = Task.Factory.StartNew(() =>
{
ObservableCollection<MyItem> itms = _htmlParser.FetchData(...);
Dispatcher.CurrentDispatcher.Invoke((Action)delegate
{
Items = itms;
});
});
}
The data is fetched from a component doing some HTTP requests. The error I am getting is:
Must create DependencySource on same Thread as the DependencyObject.
我正在使用MTV光工具包框架。 我也试图将结果作为信息发出,但结果却以同样的错误信息告终。 任何想法或要点?
EDIT:本问题:
public class MyItem
{
public string Id { get; set; }
public string Name { get; set; }
public BitmapImage Image { get; set; } // <--- A big No No because it inherits from the DependencyObject
public Uri Uri { get; set; }
}
我将<代码>BitmapImage改为byte[]
数据类型。