I have a list of List objects:
List<List<Movie>> MovieList
This MovieList object is a collection of movie lists, each based on a specific movie genre. ex. MovieList[0] will be a list of movies of the genre Comedy, etc. Now I want to associate this list of MovieList list objects with a ListView in XAML. The ListView ItemSource must be bound to this MovieList, and each ListViewItem of this ListView will be a ListView itself associated with a list of movies of a particular genre. ex. a list of comedy movies. Next, each ListViewItem of this internal list will be bound to the Title property of this particular movie. Please help me in developing XAML code for this.
Lucifer
source share