我的MVVM silverlight项目中有一个可观察的UserControl集合列表。我想将它们作为listbox数据源的源代码。我怎样才能做到这一点。
<ListBox VerticalAlignment="Stretch" Style="{StaticResource Menu}" ItemsSource="{Binding Menus}" DisplayMemberPath="Libelle" SelectedItem="{Binding SelectedItem, Mode=TwoWay}">
<ItemsControl ItemsSource="{Binding Menus.UnderControl}" /> </ListBox>
感谢。
答案 0 :(得分:0)
我们假设您有一个名为myUserControl1
的UserControl,myUserControl1.Menus
是ObservableCollection
。
并且您希望将myListBox1.ItemsSource绑定到myUserControl1.Menus。然后,您应该在绑定中使用ElementName关键字。例如:
<my:CustomControl x:Name="myUserControl1" />
<ListBox x:Name="myListBox1"
ItemsSource="{Binding Menus,ElementName=myUserControl1}" />