SplineColorKeyFrame.KeySpline Property
[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]
Gets or sets the two control points that define animation progress for this key frame.
Assembly: System.Windows (in System.Windows.dll)
XMLNS for XAML: Not mapped to an xmlns.
<SplineColorKeyFrame KeySpline="keySplineValue"/>
XAML Values
Property Value
Type: System.Windows.Media.Animation.KeySplineThe two control points that specify the cubic Bezier curve which defines the progress of the key frame.
Dependency property identifier field: KeySplineProperty
To understand how a KeySpline works, it is helpful to understand cubic Bezier curves. A cubic Bezier curve is defined by a start point, an end point, and two control points. The two coordinates in the KeySpline define those two control points. When describing key splines, the start point of the Bezier curve is always 0, and the end point is always 1, which is why you define only the two control points. The resulting curve specifies how an animation is interpolated during a time segment; that is, the curve represents the rate of change in the animation's target attribute over the time segment.