Is there a way to disable pointer mode for WebView
in an Xbox UWP app? I cannot use the RequiresPointer
property since WebView
is extended from FrameworkElement
and not from Control
.
This is my sample XAML:
<Grid Background="{ThemeResource ApplicationPageBackgroundThemeBrush}">
<WebView Source="http://stackoverflow.com/" Height="300" Width="500" />
</Grid>
Please find the pointer marked in the image below.
I have provided
RequiresPointerMode = ApplicationRequiresPointerMode.WhenRequested;
in App.xaml.cs
and RequiresPointer = RequiresPointer.Never;
at Page level.
How can I avoid the pointer and use controller buttons for scrolling?