WPF,ListView多行多列显示图片
由于我每一行要显示的图片个数不一定(listview显示不下的出滚动条)。
<ListView.ItemsPanel>
<ItemsPanelTemplate>
<WrapPanel ItemWidth="130" ItemHeight="150" IsItemsHost="True" />
</ItemsPanelTemplate>
</ListView.ItemsPanel>
我自己用WrapPanel做个一个多列显示的listview,但是没办法再添加新的行。求大神帮帮忙啊。