使用 Windows Touch WPF 中附带的 ScatterView 控件。我想防止在 scatterview 项目上发生惯性。但我仍然希望允许用户移动、缩放和旋转项目。
所以我试试这个...
ScatterviewItem svi = new ScatterviewItem();
svi.ManipulationDelta += OnManipulationDelta;
...
void OnManipulationDelta(object sender, ManipulationDeltaEventArgs args)
{
if (args.IsInertial)
{
args.Complete();
args.Handled = true;
}
}
但该事件永远不会触发。我做错了什么,还是有其他方法可以做到这一点,或者使用 scatterview 根本不可能防止惯性?