我们有一个在Win 7上运行的WPF应用程序。在Win 7中打开触摸手势,在滚动ListView时,当到达列表末尾时,应用程序会“耸耸肩”。
这也可以在Internet Explorer中重现。如果您加载足够长的网页以生成滚动条,则当使用触摸手势滚动时,Windows会在到达页面底部时“耸耸”IE。
有没有办法在我的WPF应用程序中使用代码以某种方式关闭Windows中的耸肩或禁用它?我需要继续保持联系,只需关闭耸肩。
答案 0 :(得分:4)
处理ManipulationBoundaryFeedback
(即e.Handled = true
)。
答案 1 :(得分:3)
如果要禁用窗口中所有控件的边界,则应将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;
}
答案 2 :(得分:1)