C#WPF停止情节提要

时间:2018-08-31 07:08:43

标签: c# wpf animation storyboard

我对老虎机进行编程。为了使车轮旋转,我有以下动画:

        <Border Height="300" Margin="68,434,1506,335">
                <Border.Triggers>
                    <EventTrigger RoutedEvent="Loaded">
                        <BeginStoryboard >
                            <Storyboard Name="stb">
                                <RectAnimation Storyboard.TargetProperty="Background.(ImageBrush.Viewport)"
                                To="0,0,1,1" RepeatBehavior="Forever" />
                            </Storyboard>
                        </BeginStoryboard>
                    </EventTrigger>

                </Border.Triggers>
        <Border.Background>
            <VisualBrush TileMode="Tile" Viewport="0,1,1,1">
                <VisualBrush.Visual>
                    <StackPanel>
                        <Image Source="test.jpg"></Image>
                        <Image Source="test.jpg"></Image>
                        <Image Source="test.jpg"></Image>
                    </StackPanel>
                </VisualBrush.Visual>
            </VisualBrush>
        </Border.Background>
    </Border>
    <Button Name="cmdStop"/>

如何从背后的代码开始/停止?感谢您的帮助。

编辑

我希望它不通过页面加载来启动/停止按钮。我该如何解决? 问题是按钮应该在边框之外...我如何访问按钮?

2 个答案:

答案 0 :(得分:1)

您是否尝试过暂停动画?

找到了一个很好的示例here,当您想从代码隐藏中暂停它时,请使用DataTrigger而不是EventTrigger

也许您也对“情节提要的三倍速度”感兴趣。


修改 您的问题“我想让它用按钮来启动/停止,而不是在加载页面时。如何解决此问题?”无法回答,因为未加载Page(Border?)时,动画无法运行。我建议隐藏“页面/边框”,仅在动画暂停时才显示。

我摆弄了一下,试图用可见性解决它

    <!-- This Border is animated. -->
    <Border Height="300" Margin="68,434,1506,335" >
        <Border.Style>
            <Style TargetType="{x:Type Border}">
                <!-- Here is your animation -->
                <Style.Triggers>
                    <EventTrigger RoutedEvent="Border.Loaded">
                        <BeginStoryboard Name="RandomStoryboard">
                            <Storyboard >
                                <RectAnimation Storyboard.TargetProperty="Background.(ImageBrush.Viewport)"
                            To="0,0,1,1" RepeatBehavior="Forever" />
                            </Storyboard>
                        </BeginStoryboard>
                        <!-- Stop the animation at the Start -->
                        <PauseStoryboard BeginStoryboardName="RandomStoryboard" />
                    </EventTrigger>
                    <!-- Control the animation according to the Togglebutton State -->
                    <DataTrigger Binding="{Binding Path=IsChecked, ElementName=SpinControl}" Value="True">
                        <DataTrigger.EnterActions>
                            <ResumeStoryboard BeginStoryboardName="RandomStoryboard" />
                        </DataTrigger.EnterActions>
                        <DataTrigger.ExitActions>
                            <PauseStoryboard BeginStoryboardName="RandomStoryboard" />
                        </DataTrigger.ExitActions>
                        <!-- Hide the Border while the animation is running -->
                        <Setter Property="Border.Visibility" Value="Hidden"/>
                    </DataTrigger>
                </Style.Triggers>
            </Style>
        </Border.Style>
    </Border>

    <!-- This Button Controls the Animated Border -->
    <ToggleButton Name="SpinControl">
            <ToggleButton.Style>
                <Style TargetType="{x:Type ToggleButton}">
                    <Setter Property="Content" Value="Start"/>
                    <Style.Triggers>
                        <Trigger Property="IsChecked" Value="True">
                            <Setter Property="Content" Value="Stop"/>
                        </Trigger>
                    </Style.Triggers>
                </Style>
            </ToggleButton.Style>
        </ToggleButton>

注意:Style的{​​{1}}部分是可选的,它仅将ToggleButton从开始更改为停止(反之亦然)。

注意2:不要忘记在边框中插入Content,否则动画将无法识别。

答案 1 :(得分:0)

通常,您可以使用情节提要对象的启动和停止方法来启动/停止情节提要。

在您的示例中,应为stb.Start()或stb.Stop()