EasingFunctionBase.EaseInCore(Double) Method

Definition

Provides the logic portion of the easing function that you can override to produce the EaseIn mode of the custom easing function.

protected abstract double EaseInCore (double normalizedTime);

Parameters

normalizedTime
Double

Normalized time (progress) of the animation, which is a value from 0 through 1.

Returns

A double that represents the transformed progress.

Remarks

This method transforms normalized time to control the pace of an animation for the EaseIn case of EasingMode.

You only have to specify your easing function for the EaseIn case because the implementation of the Ease method handles transforming normalizedTime for the EaseOut and EaseInOut cases.

Applies to

产品 版本
.NET Framework 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
Windows Desktop 3.0, 3.1, 5, 6, 7, 8, 9

See also