I have Windows 8.1 Store C#/XAML app, in this app I have FlipView with several flipview items. In one item I have WebView that is quite long.
The problem - when I scroll using mouse wheel in the WebView and I reach the end of the page, the FlipView then scrolls to the next item, which is unwanted.
The expected behavior is to freely scroll within the WebView and not between FlipView items. Ideally the switching between FlipView items should work only using touch or programmatic change.
I've tried setting different ScrollViewer properties on FlipViewItem or nested items, changining ManipulationMode, but nothing worked so far.
Sample code:
<FlipView>
<FlipViewItem>
<Grid Background="Red"/>
</FlipViewItem>
<FlipViewItem>
<Grid>
<!-- when scrolling on this page, do not navigate to Blue or Red FlipViewItem-->
<WebView Source="http://cnn.com"/>
</Grid>
</FlipViewItem>
<FlipViewItem>
<Grid Background="Blue"/>
</FlipViewItem>
</FlipView>