1

我有一个用于等待控件的 DoubleAnimation,它会永远重复。但我想在每次重复之间设置时间。我怎样才能做到这一点?

我的动画是:

<DoubleAnimation Storyboard.TargetName="rect1"
                 Storyboard.TargetProperty="Height"
                 To="10" BeginTime="0:0:0" Duration="0:0:0.3"
                 AutoReverse="True" RepeatBehavior="Forever"/>
4

1 回答 1

1

Duration在封闭的情节提要上设置 a :

<Storyboard AutoReverse="True" RepeatBehavior="Forever" Duration="0:0:1">
    <DoubleAnimation Storyboard.TargetName="rect1"
                     Storyboard.TargetProperty="Height"
                     To="10" Duration="0:0:0.3"/>
</Storyboard>
于 2016-08-28T07:07:31.980 回答