答案 0 :(得分:0)
您应该使用WrapPanel来获得这种布局。它在Windows运行时标准控件中不可用,here您可以找到它的实现。
用法:
<ItemsControl>
<ItemsControl.ItemsPanel>
<ItemsPanelTemplate>
<controls:WrapPanel/>
</ItemsPanelTemplate>
</ItemsControl.ItemsPanel>
<ItemControl.Items>
<!-- put your strings here or use ItemTemplate instead -->
</ItemControl.Items>
</ItemsControl>