我想显示绑定到列表框的用户控件列表
每个用户控件旁边应该有一个按钮
<ListBox ItemsSource="{Binding usercontrollist}">
<ListBox.ItemTemplate>
<DataTemplate>
<StackPanel Orientation="Horizontal">
<!--usercontrol of the current binded items-->
<Button Content="x" HorizontalAlignment="Right"></Button>
</StackPanel>
</DataTemplate>
</ListBox.ItemTemplate>
</ListBox>
我如何在xaml代码中执行此操作
答案 0 :(得分:2)
假设usercontrollist
是UserControl
的集合,那么您应该可以这样做:
<ContentControl Content="{Binding}" />