您最好的选择是返回一个在视图模型级别形成的新集合,该集合基于该集合特有的新视图模型(或模型):
public class OtherViewModel
{
//Expand these if you want to make it INPC
public int Id { get; private set; }
public string Name { get; private set; }
public Foo OtherValue { get; private set; }
}
public class MainViewModel
{
// Somewhere in MainViewModel, create the collection
ObservableCollection<OtherViewModel> CreateCollection(ICollection<ClassA> a, ICollection<ClassB> b)
{
var mix = a.Join(b, a => a.Id, b => b.Id,
(a, b) => new OtherViewModel { Id = a.Id, Name = a.Name, OtherValue = b.OtherValue });
return new ObservableCollection<OtherViewModel>(mix);
}
// Expose the collection (possibly INPC if needed)
public ObservableCollection<OtherViewModel> MixedCollection { get; private set; }
}
XAML:
<!-- Assuming the DataContext is MainViewModel -->
<ListView ItemsSource="{Binding MixedCollection}">
<ListView.View>
<GridView>
<GridViewColumn DisplayMemberBinding="{Binding Path=Name}"/>
<GridViewColumn DisplayMemberBinding="{Binding Path=OtherValue}"/>
</GridView>
</ListView.View>
</ListView>
注意事项:
- 您可以选择使用
ObservableCollection<T>
或不使用,这取决于您是否需要此集合是可观察的。
- 您还可以扩展您的视图模型以订阅
ClassA
和ClassB
集合,以便当它们中的任何一个发生更改时它可以更新您的主集合。
无论哪种方式,这都应该让您对前进的方向有一个很好的了解,并进行一些小的调整以适应您的代码。