c# - Xamarin forms - Multiple header on listview -
i using xamarin form(pcl) having 2 projects:android , ios
i want listview multiple header don't want use third party eg:
super group 1 _group 1 _item 1_1_0 _item 1_1_1 _group 2 _item 1_2_0 _item 1_2_1 super group 2 _group 1 _item 1_1_0 _item 1_1_1 _group 2 _item 1_2_0 _item 1_2_1
please achieve multiple header in listview
you need nested grouped listview. need define grouped listview containing grouped listview. define list view grouped define list view in xaml
<listview itemssource="{binding youritemlist}" isgroupingenabled="true" groupdisplaybinding="{binding key}" hasunevenrows="true">
check this forum of xamarin more info. can go through example james montemagno here. hope helps.
Comments
Post a Comment