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>
ありがとう。