找不到ScrollViewer CanContentScroll属性(Windows 8.1通用应用程序)

本文关键字:1通 应用程序 Windows ScrollViewer CanContentScroll 属性 找不到 | 更新日期: 2023-09-27 17:57:28

我正试图让ScrollView进行逻辑滚动,而不是物理滚动。在网上阅读了如何做到这一点后,大多数消息来源都说要将CanContentScroll属性设置为False。但是,在尝试执行此操作时,ScrollViewer似乎没有此属性。

这是我的XAML代码:

<ScrollViewer x:Name="TestScroll" CanContentScroll="True"  HorizontalScrollBarVisibility="Disabled" HorizontalScrollMode="Disabled" Margin="66,215,1020,10" Grid.Row="1">
        <StackPanel x:Name="TestPanel" Orientation="Vertical">
        </StackPanel>
    </ScrollViewer>

以及抛出的错误:

Error   1   The member "CanContentScroll" is not recognized or is not accessible.

Error 2 The property 'CanContentScroll' was not found in type 'ScrollViewer'

我正在为Windows8.1开发,创建一个通用的应用程序。我觉得我错过了一些参考资料或非常简单的东西,因为无论我在哪里看,它都很有效。

如有任何帮助,我们将不胜感激。

找不到ScrollViewer CanContentScroll属性(Windows 8.1通用应用程序)

使用ScrollViewer的VerticalSnapPointsType="Mandatory"属性解决了这个问题。