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.
1列の垂直ListViewがあります。ListViewItems を描画するための ItemTemplate があります。現在、各 ListViewItem は必要最小限のスペースを取ります。利用可能な最大のスペースを利用してもらいたいので、利用可能なスペースをそれらの間で均等に共有します。どうすればいいですか?
トリックは、ListView の ItemsPanel を変更することでした。
<ListView.ItemsPanel> <ItemsPanelTemplate> <UniformGrid Columns="1"></UniformGrid> </ItemsPanelTemplate> </ListView.ItemsPanel>