Silverlight,如何将用户控件的observablecollection作为itemssource提供给列表框

时间:2013-07-05 09:51:07

标签: c# silverlight

我的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>

感谢。

1 个答案:

答案 0 :(得分:0)

我们假设您有一个名为myUserControl1的UserControl,myUserControl1.MenusObservableCollection

并且您希望将myListBox1.ItemsSource绑定到myUserControl1.Menus。然后,您应该在绑定中使用ElementName关键字。例如:

<my:CustomControl x:Name="myUserControl1" />
<ListBox x:Name="myListBox1" 
         ItemsSource="{Binding Menus,ElementName=myUserControl1}" />