我在 C# 和 VS2010 中有以下内容:
- a MainWindow.xaml with a ListView
- a MainViewModel with an ObservableCollection of objects of type, UnitData
- a UnitDataDisplay.xaml with a bunch of labels tied to members of UnitData
我需要在我的 ListView 中显示可变数量的 UnitDataDisplay,这应该基于 MainViewModel 的 ObservableCollection 的 UnitData。XAML 中将 ListView 项绑定到多个 UserControl 对象而不破坏 MVVM 关注点分离的语法到底应该是什么?我的意思是我可以很容易地让我的 ObservableCollection 包含一堆 UnitDataDisplay 对象,但这会迫使我的 MainViewModel 了解视图详细信息。
我的 MainWindow XAML 文件如下所示:
<Window x:Class="ListViewTest.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="MainWindow" Height="350" Width="350">
<Grid>
<ListView Height="234" HorizontalAlignment="Left" Margin="12,28,0,0" Name="listView1" VerticalAlignment="Top" Width="304" ItemsSource="{Binding Path=UnitDataDisplay}"/>
</Grid>
</Window>
任何帮助将不胜感激。