Have a listview and i show 2 items
But i want to show 3 items , but 2 times Detail is not possible ?
It has to show
"{Binding Name}"
"{Binding Age}"
"{Binding Maand}"
This is what i have
<ListView x:Name="listView"> <ListView.ItemTemplate> <DataTemplate> <TextCell Text="{Binding Name}" Detail="{Binding Maand}" /> </DataTemplate> </ListView.ItemTemplate> </ListView>