Windows 7触摸屏“耸肩”

Windows 7触摸屏“耸肩”,第1张

概述Windows 7触摸屏耸肩

我们有一个运行在Win 7上的WPF应用程序。在Win 7中使用触摸手势时,在滚动ListVIEw时,应用程序在到达列表末尾时会“耸耸肩”在屏幕上。

这也可以在Internet Explorer中重现。 如果您加载足够长的网页以产生滚动条,那么当用触摸手势滚动时,windows在页面底部到达时“耸耸肩”IE。

有没有办法在windows中closures耸肩,或用我的WPF应用程序中的代码以某种方式禁用它? 我需要保持联系,关掉耸肩。

报告列表视图中气球样式工具提示中的词干位置错误

如何在列表视图(windows窗体C#)中创build一个平面的列标题button

当用户向上滚动时,在ListVIEw windows Phone 8.1 RT App中调用IncrementalLoading

windows ListVIEw控件(或类似的),可以有多列checkBox?

处理ManipulationBoundaryFeedback (即e.Handled = true )。

如果要禁用窗口中所有控件的边界,则应该将ManipulationBoundaryFeedback句柄放置在窗口的第一个面板上,而不是窗口本身上。

不起作用:

<Window x:Class="TestControls.BoundaryFeedback" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" ManipulationBoundaryFeedback="Control_ManipulationBoundaryFeedback" > </Window>

作品:

<Window x:Class="TestControls.BoundaryFeedback" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" > <GrID ManipulationBoundaryFeedback="Control_ManipulationBoundaryFeedback"> </GrID> </Window>

在后面的代码中:

private voID Control_ManipulationBoundaryFeedback(object sender,ManipulationBoundaryFeedbackEventArgs e) { e.Handled = true; }

您可以禁用系统范围内的边界反馈。

它位于“笔触”控制面板的“平移”选项卡上。

http://www.youtube.com/watch?v=OObTOSglE1w

总结

以上是内存溢出为你收集整理的Windows 7触摸屏“耸肩”全部内容,希望文章能够帮你解决Windows 7触摸屏“耸肩”所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/1244248.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-06
下一篇 2022-06-06

发表评论

登录后才能评论

评论列表(0条)

保存