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 に答える