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 的新手。我只是想知道 wpf 中是否有任何控件,例如 asp.net 中的中继器控件。我想使用模板来显示我的收藏,并希望按从左到右和从上到下的顺序显示。
有多种布局项目集合的方法。
我建议看看 ListView 和 ItemsControl。您可以为内容设置模板样式,以按照您的方式显示数据。
要回答您的问题,您可以将项目面板设置为允许您选择方向的面板,即:
<ListView> <ListView.ItemsPanel> <ItemsPanelTemplate> <StackPanel Orientation="Horizontal" /> </ItemsPanelTemplate> </ListView.ItemsPanel> </ListView>