Person | fruits | vegetables
______________________________________________
P1 | Apple Banana | tomato, spinach
P2 | Orange Apple | Onion, Garlic
我正在学习一些概念。我有以上格式的数据。有人可以建议哪种数据结构是我在这种情况下可以用来检索数据的最佳结构。还可以有人告诉我如何在滚动视图中包含多个列表吗?我可以通过在app.xaml中定义设计(用于水果,蔬菜清单)来使用通用模板吗?如何使用上表中检索到的数据填充到ScrollViewList中?
public class Goods
{
public string Name { get; set; }
}
public class GoodsList : List<Goods>
{
public string Name { get; set; }
public List<Goods> GoodsAll => this;
}
public class Person
{
public string Name { get; set; }
public List<GoodsList> List;
}
您需要两个页面,分别称为PersonPage
和GoodsPage
。
//Xaml
<ListView ItemsSource="{Binding list}" ItemSelected="ListView_ItemSelected">
<ListView.ItemTemplate>
<DataTemplate>
<TextCell Text="{Binding Name}"/>
</DataTemplate>
</ListView.ItemTemplate>
</ListView>
//Code
public partial class Page1 : ContentPage
{
public List<Person> list { get; set; }
public Page1()
{
InitializeComponent();
var list1 = new GoodsList() { new Goods { Name = "Apple" } , new Goods { Name = "Banana" } };
list1.Name = "Fruits";
var list2 = new GoodsList() { new Goods { Name = "Tomato" }, new Goods { Name = "Spinach" } };
list2.Name = "Vegetables";
var list3 = new GoodsList() { new Goods { Name = "Apple" }, new Goods { Name = "Orange" } };
list3.Name = "Fruits";
var list4 = new GoodsList() { new Goods { Name = "Onion" }, new Goods { Name = "Garlic" } };
list4.Name = "Vegetables";
list = new List<Person>();
list.Add(new Person
{
Name = "P1",
List = new List<GoodsList>() { list1,list2}
}) ;
list.Add(new Person
{
Name = "P2",
List = new List<GoodsList>() { list3, list4}
});
this.BindingContext = this;
}
private void ListView_ItemSelected(object sender, SelectedItemChangedEventArgs e)
{
this.Navigation.PushAsync(new Page2(e.SelectedItem), true) ;
}
}
//Xaml
<ListView x:Name="listview" IsGroupingEnabled="true">
<ListView.GroupHeaderTemplate>
<DataTemplate>
<ViewCell>
<Label BackgroundColor="Pink"
HorizontalOptions="FillAndExpand"
Text="{Binding Name}" />
</ViewCell>
</DataTemplate>
</ListView.GroupHeaderTemplate>
<ListView.ItemTemplate>
<DataTemplate>
<ViewCell>
<Label HorizontalTextAlignment="Center"
FontSize="Large"
HorizontalOptions="FillAndExpand"
Text="{Binding Name}" />
</ViewCell>
</DataTemplate>
</ListView.ItemTemplate>
</ListView>
//Code
public partial class Page2 : ContentPage
{
public Page2(object obj)
{
InitializeComponent();
var person = obj as Person;
listview.ItemsSource = person.List;
}
}