Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 C# 中有没有办法以某种方式动态构建一堆项目?就像一个列表,但没有滚动和选择。
我正在寻找一种通过绑定从列表中堆叠项目的方法。
现在我想用一个堆栈来做到这一点。
是的。它被称为 ItemsControl,它没有 ScrollViewing + 选择。你可以这样做:
<ItemsControl ItemssSource="{Binding items}"> </ItemsControl>
您可能需要更改 ItemsControl.ItemTemplate 和 ItemsControl.ItemPanelsTemplate