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.
我有一个垂直的 ListView,只有一列。我有一个 ItemTemplate 来绘制我的 ListViewItems。目前,每个 ListViewItem 占用所需的最小空间。我希望他们占用最大的可用空间,因此它们在它们之间平均共享可用空间。我该怎么做呢?
原来诀窍是更改 ListView 的 ItemsPanel。
<ListView.ItemsPanel> <ItemsPanelTemplate> <UniformGrid Columns="1"></UniformGrid> </ItemsPanelTemplate> </ListView.ItemsPanel>