我的 MVVM silverlight 项目中有一个可观察的 UserControl 集合列表。我想将它们作为列表框数据源的源。我怎样才能做到这一点。
<ListBox VerticalAlignment="Stretch" Style="{StaticResource Menu}" ItemsSource="{Binding Menus}" DisplayMemberPath="Libelle" SelectedItem="{Binding SelectedItem, Mode=TwoWay}">
<ItemsControl ItemsSource="{Binding Menus.UnderControl}" /> </ListBox>
谢谢。