DataGrid control working as the only content on a MAUI content page. I'm setting the ItemSource property in the page Loaded event and so far all I can manage is to see that my breakpoint in that event handler is getting hit when I debug the app on my Android device. Test data is being loaded correctly here, into an ObservableCollection and the CollectionChanged and PropertyChanged events are being raised by my view model, but when the loaded event handler completes, the DataGrid only shows column headers and zero rows.CollectionView control and that was populating properly. I thought it should be a relatively small and simple step to switch to another, similar control, based on my dim memoroes of working with data binding in WPF. It appears it's not at all so simple.