Silverlight 4前景ColorAnimation

时间:2010-08-23 05:05:20

标签: silverlight foreground coloranimation

我试图在用户MouseOver控件时为超链接按钮设置Foreground颜色的动画。我创建了一个自定义样式,我想在其中设置Foreground颜色的动画。前景颜色设置如此

<Setter Property="Foreground" Value="#FF73A9D8"/>

在visualStateManager部分中,我有以下颜色动画元素

<ColorAnimation Duration="0:0:0.5" 
              Storyboard.TargetName="contentPresenter" 
              Storyboard.TargetProperty="(Control.Foreground).(SolidColorBrush.Color)" 
              To="Black" />

问题在于我无法弄清楚值应该是什么Storyboard.TargetName。

文本在ContentPresenter控件中设置,该控件没有Foreground属性

1 个答案:

答案 0 :(得分:4)

你是对的。没有地方可以将动画挂在控件模板中。

虽然HyperlinkBut​​ton有一个由其内容继承的前景属性,但该属性不会作为模板的一部分公开。

最好的办法是创建一个通过MouseEnter / MouseLeave行为播放2个故事板的用户控件(下面的“GlowingHyperlinkBut​​ton”XAML)。您当然仍需要通过依赖属性公开内容:

<UserControl
    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:i="http://schemas.microsoft.com/expression/2010/interactivity" xmlns:ei="http://schemas.microsoft.com/expression/2010/interactions"
    mc:Ignorable="d"
    x:Class="SilverlightApplication1.GlowingHyperlinkButton"
    d:DesignWidth="94" d:DesignHeight="16">
    <UserControl.Resources>
        <Storyboard x:Name="MouseEnterStoryboard">
            <ColorAnimation Duration="0:0:0.5" To="#FFDF00EB" Storyboard.TargetProperty="(Control.Foreground).(SolidColorBrush.Color)" Storyboard.TargetName="hyperlinkButton" d:IsOptimized="True"/>
        </Storyboard>
        <Storyboard x:Name="MouseLeaveStoryboard">
            <ColorAnimationUsingKeyFrames Storyboard.TargetProperty="(Control.Foreground).(SolidColorBrush.Color)" Storyboard.TargetName="hyperlinkButton">
                <SplineColorKeyFrame KeyTime="0:0:0.5" Value="#FF49ED28"/>
            </ColorAnimationUsingKeyFrames>
        </Storyboard>
    </UserControl.Resources>

    <Grid x:Name="LayoutRoot">
        <HyperlinkButton x:Name="hyperlinkButton" Content="HyperlinkButton" Foreground="#FF49ED28" d:LayoutOverrides="Width, Height">
            <i:Interaction.Triggers>
                <i:EventTrigger EventName="MouseEnter">
                    <ei:ControlStoryboardAction Storyboard="{StaticResource MouseEnterStoryboard}"/>
                </i:EventTrigger>
                <i:EventTrigger EventName="MouseLeave">
                    <ei:ControlStoryboardAction Storyboard="{StaticResource MouseLeaveStoryboard}"/>
                </i:EventTrigger>
            </i:Interaction.Triggers>
        </HyperlinkButton>
    </Grid>
</UserControl>

为可怕的颜色选择道歉。希望这会有所帮助:)