I'm trying to implement a Comments Section at the end of a page, which I want to load comments as you scroll down the page. Currently I have the ListView scrollviewer as the means of scrolling the content. However, this feels disjointed as there are two scrollbars at the end of the page, and if the Main Scrollviewer hasn't scrolled all the way down, it gets confusing.
The Comments Control is a separate UserControl, where the Comments ListView is in a Pivot control. I have a Dependency Property for a ScrollViewer, which I use with x:bind to fetch from the Visual Tree of the Page.
Is there a way to get these scrollviewers to act as one? With one Scrollbar, and the scrolling of the Page causing ItemSource to incrementally load?
I am using the IncrementalLoadingCollection from UWP Community Toolkit as the ISupportIncrementalLoading object.