(UWP) ScrollViewer PanningMode - 它存在吗?

(UWP) ScrollViewer PanningMode - does it exist?

我真的希望我没有在这里做一些愚蠢的事情,但我正在尝试制作一个(快速?)UWP Windows 10 种测试应用程序,其中包括一个用于滚动图像的 ScrollViewer。在我尝试使用 PanningMode 之前,ScrollViewer 工作正常,但它只是说它不存在。我看到另一个 post 的 PanningMode="Both" 不工作,但这一点也没有帮助,没有解决我遇到的问题。是我太蠢了,比如 PanningMode 由于某种原因不存在,还是有什么不对劲?这是我的MainPage.xaml(虽然目前没有优化或符合任何真正的标准),我希望它足够了。

<Page
x:Class="NewLunderground.MainPage"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="using:NewLunderground"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d">

<Grid Background="{ThemeResource ApplicationPageBackgroundThemeBrush}">

    <ScrollViewer x:Name="ScrollusViewus" HorizontalAlignment="Left" VerticalAlignment="Top" ZoomMode="Enabled" ScrollViewer.HorizontalScrollBarVisibility="Auto" ScrollViewer.VerticalScrollBarVisibility="Visible" PanningMode="Both"  Height="Auto" Width="Auto">
        <Image x:Name="mapImage" HorizontalAlignment="Left" VerticalAlignment="Top" Source="Assets/map.png" Stretch="None" ManipulationMode="All" ScrollViewer.HorizontalScrollBarVisibility="Visible" Width="Auto" Height="Auto"/>
    </ScrollViewer>

</Grid>

PanningMode 属性 在 WPF 应用程序中指定 ScrollViewer 应如何对触摸操作做出反应。您可以确定它是水平滚动、垂直滚动还是两者都滚动。然而,这在 UWP 应用程序中不是必需的,因为 ScrollViewer 会自动对触摸操作做出反应。这就是 属性 不存在并且您收到错误的原因。