MatrixAnimationBase.GetCurrentValueCore 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
在派生类中实现后,计算动画的当前值。
protected:
abstract System::Windows::Media::Matrix GetCurrentValueCore(System::Windows::Media::Matrix defaultOriginValue, System::Windows::Media::Matrix defaultDestinationValue, System::Windows::Media::Animation::AnimationClock ^ animationClock);
protected abstract System.Windows.Media.Matrix GetCurrentValueCore (System.Windows.Media.Matrix defaultOriginValue, System.Windows.Media.Matrix defaultDestinationValue, System.Windows.Media.Animation.AnimationClock animationClock);
abstract member GetCurrentValueCore : System.Windows.Media.Matrix * System.Windows.Media.Matrix * System.Windows.Media.Animation.AnimationClock -> System.Windows.Media.Matrix
Protected MustOverride Function GetCurrentValueCore (defaultOriginValue As Matrix, defaultDestinationValue As Matrix, animationClock As AnimationClock) As Matrix
参数
- defaultOriginValue
- Matrix
建议使用的原始值。如果动画没有自己显式设置的起始值,则使用该值。
- defaultDestinationValue
- Matrix
建议使用的目标值。如果动画没有自己显式设置的结束值,则使用该值。
- animationClock
- AnimationClock
一个 AnimationClock,用来生成主机动画所使用的 CurrentTime 或 CurrentProgress。
返回
此动画信任的值应为该属性的当前值。
注解
参数的值 defaultOriginValue
取决于动画在合成链中的位置:
如果动画位于合成链的第一个位置,并且它替换了另一个动画,
defaultOriginValue
则当动画被替换时,该动画的输出。如果动画位于合成链的第一个位置,并且不存在要替换的动画,
defaultOriginValue
则动画属性的基值。如果此动画不在合成链的第一个位置,则
defaultOriginValue
表示由合成链中上一 AnimationClock 个动画返回的值,而该动画没有 Stopped。
参数的值 defaultDestinationValue
取决于是否存在以前的属性 Trigger 组合层。
如果存在以前的属性 Trigger 组合层,
defaultDestinationValue
则为该层的输出。如果没有以前的合成层,
defaultDestinationValue
则表示要进行动画处理的属性的基值。
有关动画合成的详细信息,请参阅 动画和计时系统概述。 有关创建自定义动画类型的详细信息,请参阅 自定义动画概述。