在 WPF 中,我试图将图像从左移动到中心,暂停一秒钟,然后将图像向右移动。我正在尝试使用 ObjectAnimationUsingKeyFrames 来实现它。
<BeginStoryboard>
<Storyboard Storyboard.TargetName="RoundNumberText" >
<ObjectAnimationUsingKeyFrames Duration="0:0:1" Storyboard.TargetProperty="Left">
<DiscreteObjectKeyFrame Value="400" KeyTime="0:0:0.5"/>
<DiscreteObjectKeyFrame Value="1400" KeyTime="0:0:1.5"/>
</ObjectAnimationUsingKeyFrames>
</Storyboard>
</BeginStoryboard>
不知何故,我在 TargetProperty 上收到了该属性不支持该对象的错误消息。我也尝试过保证金,但仍然给出错误。感谢是否有人可以提供帮助。