我需要在listview中显示我的观点。我用这种方式在wpf上做到了:
<ListBox ItemsSource="{Binding CommissionVMs}" BorderBrush="White">
<ListBox.ItemsPanel>
<ItemsPanelTemplate>
<StackPanel IsItemsHost="True" />
</ItemsPanelTemplate>
</ListBox.ItemsPanel>
<ListBox.ItemTemplate>
<DataTemplate>
<views:Commission/>
</DataTemplate>
</ListBox.ItemTemplate>
</ListBox>
CommissionVMs是我的viewModels集合,Commission是要显示的视图。那么我怎么能在xamarin表格上做到这一点?
答案 0 :(得分:0)
我明白了!我只需要创建我的视图作为ViewCell,然后像通常的容器一样在listView中显示它。 所以这个问题只是在错误的容器中。