Vector2KeyFrameAnimation.InsertKeyFrame 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
重载
InsertKeyFrame(Single, Vector2) |
插入关键帧。 |
InsertKeyFrame(Single, Vector2, CompositionEasingFunction) |
插入具有指定缓动函数的关键帧。 |
InsertKeyFrame(Single, Vector2)
插入关键帧。
public:
virtual void InsertKeyFrame(float normalizedProgressKey, float2 value) = InsertKeyFrame;
/// [Windows.Foundation.Metadata.Overload("InsertKeyFrame")]
void InsertKeyFrame(float const& normalizedProgressKey, float2 const& value);
[Windows.Foundation.Metadata.Overload("InsertKeyFrame")]
public void InsertKeyFrame(float normalizedProgressKey, Vector2 value);
function insertKeyFrame(normalizedProgressKey, value)
Public Sub InsertKeyFrame (normalizedProgressKey As Single, value As Vector2)
参数
- 属性
另请参阅
适用于
InsertKeyFrame(Single, Vector2, CompositionEasingFunction)
插入具有指定缓动函数的关键帧。
public:
virtual void InsertKeyFrame(float normalizedProgressKey, float2 value, CompositionEasingFunction ^ easingFunction) = InsertKeyFrame;
/// [Windows.Foundation.Metadata.Overload("InsertKeyFrameWithEasingFunction")]
void InsertKeyFrame(float const& normalizedProgressKey, float2 const& value, CompositionEasingFunction const& easingFunction);
[Windows.Foundation.Metadata.Overload("InsertKeyFrameWithEasingFunction")]
public void InsertKeyFrame(float normalizedProgressKey, Vector2 value, CompositionEasingFunction easingFunction);
function insertKeyFrame(normalizedProgressKey, value, easingFunction)
Public Sub InsertKeyFrame (normalizedProgressKey As Single, value As Vector2, easingFunction As CompositionEasingFunction)
参数
- easingFunction
- CompositionEasingFunction
在帧之间内插时使用的缓动函数。
- 属性