WPF XAML动画当绑定的布尔值变为false时,如何停止它? [英] WPF XAML Animation How do i stop it when bound boolean becomes false?

查看:191
本文介绍了WPF XAML动画当绑定的布尔值变为false时,如何停止它?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我希望动画在布尔CanAnimate变为false时停止。它从true开始,所以当CanAnimate为false时我如何告诉它停止? (CanAnimate布尔值设置在SelectedItem设置器中)

I want the animation to stop when the boolean CanAnimate becomes false. It starts on true, so how do i tell it to stop when CanAnimate is false? (The CanAnimate bool is set inside a SelectedItem setter)

<Border BorderBrush="Black" BorderThickness="2" Margin="1" Name="ReviewNote">
    <Border.Style>
        <Style TargetType="Border">
           <Style.Triggers>
               <DataTrigger Binding="{Binding CanAnimate}" Value="True">
                   <DataTrigger.EnterActions>
                       <BeginStoryboard>
                           <Storyboard>
                              <DoubleAnimation 
                                    Storyboard.TargetProperty="(Border.Opacity)"
                                    From="1.0" To="0.0" AutoReverse="True" 
                                    RepeatBehavior="Forever" />
                            </Storyboard>
                       </BeginStoryboard>
                   </DataTrigger.EnterActions>
               </DataTrigger>
            </Style.Triggers>
         </Style>
    </Border.Style>
   <TextBlock/>
</Border>


推荐答案

您可以尝试在DataTrigger上使用ExitActions停止通过覆盖另一个动画来制作动画。例如:

You can try using the ExitActions on the DataTrigger to stop the animation, by overriding with another animation. For instance:

<DataTrigger Binding="{Binding CanAnimate}" Value="True">
   <DataTrigger.EnterActions>
       <BeginStoryboard>
           <Storyboard>
              <DoubleAnimation 
                    Storyboard.TargetProperty="(Border.Opacity)"
                    From="1.0" To="0.0" AutoReverse="True" 
                    RepeatBehavior="Forever" />
            </Storyboard>
       </BeginStoryboard>
   </DataTrigger.EnterActions>
   <DataTrigger.ExitActions>
        <BeginStoryboard>
           <Storyboard>
              <DoubleAnimation 
                    Storyboard.TargetProperty="(Border.Opacity)"
                    From="0.0" To="0.0" Duration="0:0:0.0" FillBehavior="HoldEnd" />
            </Storyboard>
       </BeginStoryboard>
   </DataTrigger.ExitActions>
</DataTrigger>

或者,有一种方法可以按名称停止XAML中的情节提要,您也可以为此使用ExitActions 。 上一个问题说明了方法。

Alternatively, there is a way to stop storyboards in XAML by name, again you could use ExitActions for this. This previous question shows the way.

希望这会有所帮助!

这篇关于WPF XAML动画当绑定的布尔值变为false时,如何停止它?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆