我有一个存储在数据库中的对象,我正在我的视图模型中检索该对象并将其放入可观察的集合中。这些对象是属性(房屋/不动产),每个都有一个称为图像的子对象。每个属性可以有多个图像(但每个图像只能有一个属性)。我只想使用一个视图模型。我的属性可以很好地填充列表框,并且可以成功地将图像绑定到后续列表框,但前提是我通过 iList 进行绑定。我的问题是如何将图像实现为它们自己的可观察集合(以便我可以监视更改),而不是 iList。这是我上面提到的一些功能的代码......
public IList<Image> Images
{
get
{
if (CurrentProperty != null)
return CurrentProperty.Images.ToList();
return null;
}
}
private void Load()
{
PropertyList = new ObservableCollection<Property>(from property in entities.Properties.Include("Images") select property);
//Sort the list (based on previous session stored in database)
var sortList = PropertyList.OrderBy(x => x.Sort).ToList();
PropertyList.Clear();
sortList.ForEach(PropertyList.Add);
propertyView = CollectionViewSource.GetDefaultView(PropertyList);
if (propertyView != null) propertyView.CurrentChanged += new System.EventHandler(propertyView_CurrentChanged);
public const string PropertiesPropertyName = "PropertyList";
private ObservableCollection<Property> _PropertyList = null;
public ObservableCollection<Property> PropertyList
{
get
{
return _PropertyList;
}
set
{
if (_PropertyList == value)
{
return;
}
var oldValue = _PropertyList;
_PropertyList = value;
// Update bindings, no broadcast
RaisePropertyChanged(PropertiesPropertyName);
}
}