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.
一段时间以来,我一直在为 WPF 组件中的复制GridView或TileView(实际上如何称呼它并不重要)问题而烦恼,并找到了一些非常复杂和令人困惑的答案。ListView并非所有这些都有效,其中一些不适用于带有模板的自定义数据绑定。在 SO 上也找不到一个简单明了的答案。
GridView
TileView
ListView
这是我想出的最简单的方法:
<ListView ItemTemplate="{...}" ScrollViewer.HorizontalScrollBarVisibility="Disabled"> <ListView.ItemsPanel> <ItemsPanelTemplate> <WrapPanel/> </ItemsPanelTemplate> </ListView.ItemsPanel> </ListView>
请享受。