State
I have a Page
(Page_Child
) with a ScrollViewer
(ScrollViewer_Child
) in a Frame
(Frame_Parent
) which is the child of my parent ScrollViewer
(ScrollViewer_Parent
).
<ScrollViewer Name="ScrollViewer_Parent">
<StackPanel>
<Frame Name="Frame_Parent">
<Frame.Content>
<Page Name="Page_Child">
<ScrollViewer Name="ScrollViewer_Child">
<!-- Page Content -->
</ScrollViewer>
</Page>
</Frame.Content>
</Frame>
<!-- ... -->
</StackPanel>
</ScrollViewer>
Problem
What I try to achieve is to disable the ScrollViewer
in the Frame
as the parent ScrollViewer
can handle all of the seizing thanks to the not fixed height of the Frame
. - Or at least let the parent continue scrolling when the child reached the top or the bottom.
Sadly I can't use any external resources or libraries, nor can I remove the child ScrollViewer
as it's visualized somewhere else in my application.
Question
Is there a way of telling the frame content to disable scrolling or how to archive the continues scrolling through the frame?