如何绑定ItemsControl中的项目?

时间:2011-06-14 10:41:48

标签: wpf silverlight

我写了一些有itemsControl的控制器。 控件中的每个项目都是我写的一些UserControl。

我想在Item源和我持有的一些集合之间建立一个绑定:

Itemscontrol:

    <ItemsControl  x:Name="itemsControl" Background="White" >
        <ItemsControl.Template>
            <ControlTemplate>
                <ScrollViewer x:Name="ScrollViewer" Padding="{TemplateBinding Padding}" >
                    <ItemsPresenter />
                </ScrollViewer>
            </ControlTemplate>
        </ItemsControl.Template>
    </ItemsControl>

我想要绑定的集合是一些List,它包含将用于创建将添加到itemsControl的'usercontrol'的对象。

我该怎么办? (我尝试绑定到ItemSource - 但我不知道该怎么做)

1 个答案:

答案 0 :(得分:1)