添加多个按钮

时间:2016-04-18 16:33:22

标签: wpf

所以我想添加x按钮,这个值将来自用户输入的变量
我把5个表和5个按钮放在一起。
有什么帮助吗?

1 个答案:

答案 0 :(得分:1)

听起来你想要一个ItemsControl。它让你定义一个模板(在你的情况下,一个按钮)并绑定到这样的项目集合:

<ItemsControl ItemsSource={Binding MyCollectionOfObjects>
    <ItemsControl.ItemTemplate>
        <DataTemplate>
            <Button Content="{Binding MyStringProperty}"/>
        </DataTemplate>
    </ItemsControl.ItemTemplate>
</ItemsControl>