gpt4 book ai didi

c - WPF 中平滑触摸滚动的 Storyboard

转载 作者:行者123 更新时间:2023-11-30 21:28:55 25 4
gpt4 key购买 nike

请提供 wpf 中平板电脑平滑触摸滚动的 Storyboard 。就我而言,触摸响应不平滑,并且正在移动,就像要转到不同的页面一样。

最佳答案

不需要 Storyboard...只需将滚动查看器添加到您的代码

<ScrollViewer 
VerticalScrollBarVisibility="Visible" HorizontalScrollBarVisibility="Disabled" PanningMode="Both" ManipulationBoundaryFeedback="ScrollViewerCanvas_ManipulationBoundaryFeedback">
//Add stuff here
</ScrollViewer>

在代码后面:

private void ScrollViewerCanvas_ManipulationBoundaryFeedback(object sender, ManipulationBoundaryFeedbackEventArgs e)
{
e.Handled = true;
}

关于c - WPF 中平滑触摸滚动的 Storyboard,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36620988/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com