I have a Listview in XAML with few Listview Items that are added through XAML only and my listview has no other Items source.I want to group the items into two group.My Listview code is something like this
<ListView Name="List">
<ListViewItem Content="Apple" />
<ListViewItem Content="Orange" />
<ListViewItem Content="Tomato" />
<ListViewItem Content="Potato" />
<ListView />
I want to group them into two sets .Is this possible.
I would say if you want to group items in
ListView
you will not go around theCollectionViewSource
. It's easier to fill it in ViewModel, but if you haven't VM you can also create one in XAML.