ScalarKeyFrameAnimation.InsertKeyFrame 方法

定义

重载

InsertKeyFrame(Single, Single)

插入关键帧。

InsertKeyFrame(Single, Single, CompositionEasingFunction)

插入关键帧。

InsertKeyFrame(Single, Single)

插入关键帧。

public:
 virtual void InsertKeyFrame(float normalizedProgressKey, float value) = InsertKeyFrame;
/// [Windows.Foundation.Metadata.Overload("InsertKeyFrame")]
void InsertKeyFrame(float const& normalizedProgressKey, float const& value);
[Windows.Foundation.Metadata.Overload("InsertKeyFrame")]
public void InsertKeyFrame(float normalizedProgressKey, float value);
function insertKeyFrame(normalizedProgressKey, value)
Public Sub InsertKeyFrame (normalizedProgressKey As Single, value As Single)

参数

normalizedProgressKey
Single

float

关键帧的发生时间,以动画 Duration 的百分比表示。 允许的值为 0.0 到 1.0。

value
Single

float

关键帧的值。

属性

另请参阅

适用于

InsertKeyFrame(Single, Single, CompositionEasingFunction)

插入关键帧。

public:
 virtual void InsertKeyFrame(float normalizedProgressKey, float value, CompositionEasingFunction ^ easingFunction) = InsertKeyFrame;
/// [Windows.Foundation.Metadata.Overload("InsertKeyFrameWithEasingFunction")]
void InsertKeyFrame(float const& normalizedProgressKey, float const& value, CompositionEasingFunction const& easingFunction);
[Windows.Foundation.Metadata.Overload("InsertKeyFrameWithEasingFunction")]
public void InsertKeyFrame(float normalizedProgressKey, float value, CompositionEasingFunction easingFunction);
function insertKeyFrame(normalizedProgressKey, value, easingFunction)
Public Sub InsertKeyFrame (normalizedProgressKey As Single, value As Single, easingFunction As CompositionEasingFunction)

参数

normalizedProgressKey
Single

float

关键帧的发生时间,以动画 Duration 的百分比表示。 允许的值为 0.0 到 1.0。

value
Single

float

关键帧的值。

easingFunction
CompositionEasingFunction

用于在关键帧之间内插的缓动函数。

属性

另请参阅

适用于