CCT.NUI.WPFSamples.ManipulationWindow.OnManipulationInertiaStarting C# (CSharp) Méthode

OnManipulationInertiaStarting() protected méthode

protected OnManipulationInertiaStarting ( System.Windows.Input.ManipulationInertiaStartingEventArgs e ) : void
e System.Windows.Input.ManipulationInertiaStartingEventArgs
Résultat void
        protected override void OnManipulationInertiaStarting(ManipulationInertiaStartingEventArgs e)
        {
            base.OnManipulationInertiaStarting(e);
            e.TranslationBehavior.DesiredDeceleration = 0.001;
            e.RotationBehavior.DesiredDeceleration = 0.01;
            e.ExpansionBehavior.DesiredDeceleration = 0.01;
        }