The Windows 8 manipulation events apply inertia by default, as described in this article, i.e. manipulation delta events keep firing after the user has lifted their finger.
Does anyone know how to ‘tune’ or disable this inertia? I have tried handling ManipulationInertiaStarting and setting e.Handled=true, but this does not disable inertia.
Any ideas?
You can set these up using the ManipulationMode, eg.
vs.
You can also check e.IsInertial in the manipulation events and call e.Complete() to stop the current manipulation without inertia.