I want to implement Incremental loading in MasterDetailsView
. I know we can implement Incremental loading with ISupportIncrementalLoading
. But one problem I don't have all the items in the ObservableCollection
at once. The items in ObservableCollection
will be added only when the user reach the end of the MasterDetailsView.ItemTemplate
.
I have already created a function to load more Items in ObservableCollection
but I want to call that function only when the user reaches the end of the MasterDetailsView.ItemTemplate
.
So how do I do it?