如何在 WPF 中设置单个动画重复之间的时间?
How to set time between single Animation repeats in WPF?
我有一个用于等待控件的 DoubleAnimation,它会一直重复。但我想在每次重复之间设置时间。我该怎么做?
我的动画是:
<DoubleAnimation Storyboard.TargetName="rect1"
Storyboard.TargetProperty="Height"
To="10" BeginTime="0:0:0" Duration="0:0:0.3"
AutoReverse="True" RepeatBehavior="Forever"/>
在封闭的 Storyboard 上设置 Duration
:
<Storyboard AutoReverse="True" RepeatBehavior="Forever" Duration="0:0:1">
<DoubleAnimation Storyboard.TargetName="rect1"
Storyboard.TargetProperty="Height"
To="10" Duration="0:0:0.3"/>
</Storyboard>
我有一个用于等待控件的 DoubleAnimation,它会一直重复。但我想在每次重复之间设置时间。我该怎么做?
我的动画是:
<DoubleAnimation Storyboard.TargetName="rect1"
Storyboard.TargetProperty="Height"
To="10" BeginTime="0:0:0" Duration="0:0:0.3"
AutoReverse="True" RepeatBehavior="Forever"/>
在封闭的 Storyboard 上设置 Duration
:
<Storyboard AutoReverse="True" RepeatBehavior="Forever" Duration="0:0:1">
<DoubleAnimation Storyboard.TargetName="rect1"
Storyboard.TargetProperty="Height"
To="10" Duration="0:0:0.3"/>
</Storyboard>