阻止WPF应用程序在到达滚动结束时移动

时间:2014-12-03 15:00:12

标签: c# .net wpf windows-8 datagridview

我在WindowsFormHost控件中使用DataGridView有一个WPF 4.0 C#应用程序。这一切都运行良好,但在Windows 8.1上,当我滚动到datagridview的末尾时,整个WPF应用程序框架可视地移动以指示滚动的结束。我想禁用它。

这似乎是一个类似的问题,但解决方案对我不起作用:

https://antonidol.wordpress.com/2012/01/24/how-to-stop-a-wpf-window-from-moving-by-removing-the-manipulationboundaryfeedback/

我尝试将以下事件处理程序附加到Window,Grid和WindowsFormHost,但事件似乎没有被触发。

Grid_Control.ManipulationBoundaryFeedback += delegate(object sendera, ManipulationBoundaryFeedbackEventArgs ea)
{
    Debug.WriteLine("Testa");
    ea.Handled = true;
};

0 个答案:

没有答案