DoubleKeyFrame
DoubleKeyFrame
DoubleKeyFrame
DoubleKeyFrame
Class
Definition
An abstract class that defines an animation segment with its own target value and interpolation method for a DoubleAnimationUsingKeyFrames.
public : class DoubleKeyFrame : DependencyObject, IDoubleKeyFramepublic class DoubleKeyFrame : DependencyObject, IDoubleKeyFramePublic Class DoubleKeyFrame Inherits DependencyObject Implements IDoubleKeyFrame// This API is not available in Javascript.
- Inheritance
-
DoubleKeyFrameDoubleKeyFrameDoubleKeyFrameDoubleKeyFrame
- Attributes
| Device family |
Windows 10 (introduced v10.0.10240.0)
|
| API contract |
Windows.Foundation.UniversalApiContract (introduced v1)
|
Inherited Members
Inherited methods
Inherited properties
Remarks
DoubleKeyFrame derived classes
DoubleKeyFrame is the parent class for several immediately derived classes that define the interpolation behavior for the typed keyframe.
Constructors
DoubleKeyFrame() DoubleKeyFrame() DoubleKeyFrame() DoubleKeyFrame()
Provides base class initialization behavior for DoubleKeyFrame -derived classes.
protected : DoubleKeyFrame()protected DoubleKeyFrame()Protected Sub New()// This API is not available in Javascript.
Properties
KeyTime KeyTime KeyTime KeyTime
Gets or sets the time at which the key frame's target Value should be reached.
public : KeyTime KeyTime { get; set; }public KeyTime KeyTime { get; set; }Public ReadWrite Property KeyTime As KeyTime// This API is not available in Javascript.
<doubleKeyFrame KeyTime="keyTimeString"/>
KeyTimeProperty KeyTimeProperty KeyTimeProperty KeyTimeProperty
Identifies the KeyTime dependency property.
public : static DependencyProperty KeyTimeProperty { get; }public static DependencyProperty KeyTimeProperty { get; }Public Static ReadOnly Property KeyTimeProperty As DependencyProperty// This API is not available in Javascript.
The identifier for the KeyTime dependency property.
Value Value Value Value
Gets or sets the key frame's target value.
public : double Value { get; set; }public double Value { get; set; }Public ReadWrite Property Value As double// This API is not available in Javascript.
<doubleKeyFrame Value="double"/>
- Value
- double double double double
The key frame's target value, which is the value of this key frame at its specified KeyTime. The default is 0.
ValueProperty ValueProperty ValueProperty ValueProperty
Identifies the Value dependency property.
public : static DependencyProperty ValueProperty { get; }public static DependencyProperty ValueProperty { get; }Public Static ReadOnly Property ValueProperty As DependencyProperty// This API is not available in Javascript.
The identifier for the Value dependency property.