Description
Issue Summary
While following the exercise Manage selection by using a viewmodel, I found an inconsistency between the tutorial documentation and the provided sample code:
- Documentation requirement: Modify the
CollectionView element in Views\MoviesListPage.xaml and the CollectionView_SelectionChanged event handler in Views\MoviesListPage.xaml.cs.
- Current repo implementation: The
MoviesListPage.xaml is still using the deprecated ListView (official documentation confirms it's deprecated: "ListView is deprecated. Please use CollectionView instead." β see here).
This caused confusion for beginners when the expected CollectionView could not be found while following the tutorial steps.
Expected Behavior
The sample code should align with the documentation by replacing ListView with CollectionView, so learners can successfully complete the exercise following the tutorial instructions.
Related Links
Thanks for maintaining this repo! π
Description
Issue Summary
While following the exercise Manage selection by using a viewmodel, I found an inconsistency between the tutorial documentation and the provided sample code:
CollectionViewelement inViews\MoviesListPage.xamland theCollectionView_SelectionChangedevent handler inViews\MoviesListPage.xaml.cs.MoviesListPage.xamlis still using the deprecatedListView(official documentation confirms it's deprecated: "ListView is deprecated. Please use CollectionView instead." β see here).This caused confusion for beginners when the expected
CollectionViewcould not be found while following the tutorial steps.Expected Behavior
The sample code should align with the documentation by replacing
ListViewwithCollectionView, so learners can successfully complete the exercise following the tutorial instructions.Related Links
Thanks for maintaining this repo! π