如上所述,我想在xamarin.forms中创建水平ListView.
但是我找到的解决方案和示例并不是我想要的那种水平列表.
我偶然发现的每篇文章都是这样排列的
item1____item2____item3____item4____item5
我想做的是这样的事情
item1___item2
item3___item4
item5___and so on
在Windows手机中,我们可以这样做
<ListBox.ItemsPanel>
<ItemsPanelTemplate>
<toolkit:WrapPanel ItemWidth="222" ItemHeight="100"/>
</ItemsPanelTemplate>
</ListBox.ItemsPanel>
现在,是否有可能在xamarin.forms中创建这样的东西?
最佳答案 据我所知,在Xamarin Forms中没有直接实现这样的东西.但是Daniel Luberda有一个FlowListView控件.也许这就是你想要的:
https://github.com/daniel-luberda/DLToolkit.Forms.Controls/tree/master/FlowListView/