本文介绍了停止对象操纵惯性的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我有一个用户通过拖动操作的显示对象。效果很好但是物体具有"操纵惯性"。这会导致鼠标/触摸手势停止后对象继续被操纵。我想停止这个,这样一旦手势
停止,对象就会停止移动。不确定如何。
I have a display object which the user manipulates by dragging. Works good but the object have "manipulation inertia" which cause the object to keep being manipulated after the mouse / touch gesture stops. I want to stop this so that as soon as the gesture stops the object stops moving. Not sure how.
帮助不大?
谢谢,
马特
推荐答案
if (e.IsInertial)
{
e.Complete();
}
这篇关于停止对象操纵惯性的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!