0

我尝试将动画添加到 WPF 的高度和宽度Window。我看到我应该使用EnableDependentAnimation. DoubleAnimationWPF项目中没有启用此属性,而只有通用窗口应用程序项目,为什么?

4

1 回答 1

1

WPF 中没有可用的 EnableDependentAnimation 属性,因为 WPF 没有“依赖”动画的概念。

不过,您仍然可以为窗口大小设置动画:

<Window x:Class="WpfApplication1.Window1"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
    xmlns:local="clr-namespace:WpfApplication1"
    mc:Ignorable="d"
    Title="Window1" Height="300" Width="300" x:Name="myWindow">
<Window.Triggers>
    <EventTrigger RoutedEvent="Loaded">
        <EventTrigger.Actions>
            <BeginStoryboard >
                <Storyboard  RepeatBehavior="Forever" AutoReverse="False">
                    <DoubleAnimation  Storyboard.TargetProperty = "Height" To="500" Duration="0:0:5"/>
                    <Storyboard  RepeatBehavior="Forever" AutoReverse="False">
                        <DoubleAnimation  Storyboard.TargetProperty="Width" To="500" Duration="0:0:5"/>
                    </Storyboard>
                </Storyboard>
            </BeginStoryboard>
        </EventTrigger.Actions>
    </EventTrigger>
</Window.Triggers>

于 2016-12-14T16:36:47.890 回答