0
我有一個ItemsControl,我會喜歡這些項目來統一填充控件。因爲ItemsPanelTemplate只使用一個StackPanel向一個方向延伸。是否有ItemsPanelTemplate將使項目統一填充控件?
我有一個ItemsControl,我會喜歡這些項目來統一填充控件。因爲ItemsPanelTemplate只使用一個StackPanel向一個方向延伸。是否有ItemsPanelTemplate將使項目統一填充控件?
你實際需要的是一個統一填充的Panel
。嘗試UniformGrid
面板:
<ItemsControl>
<ItemsControl.ItemsPanel>
<ItemsControl.ItemsPanelTemplate>
<UniformGrid/>
</ItemsControl.ItemsPanelTemplate>
</ItemsControl.ItemsPanel>
</ItemsControl>