如何使用数据绑定将项目显示为堆栈

时间:2012-09-16 11:29:21

标签: c# windows-phone

C#中有没有办法以某种方式动态构建一堆项目? 就像一个列表,但没有滚动和选择。

我正在寻找一种通过绑定从列表中堆叠项目的方法。

现在我想用堆栈来做这件事。

1 个答案:

答案 0 :(得分:1)

呀。它叫做ItemsControl,没有ScrollViewing +选择。 你可以这样做:

<ItemsControl ItemssSource="{Binding items}">
</ItemsControl>

您可能需要更改ItemsControl.ItemTemplate和ItemsControl.ItemPanelsTemplate