我在这里有点困惑,所以请帮助我。
我有一个简单的 wpf 动画:
<DropShadowEffect Color="Transparent" ShadowDepth="0" Opacity="0.75" x:Key="Shiny" x:Shared="False"/>
<Storyboard x:Key="ShinyAnim" x:Shared="False">
<ColorAnimation From="Transparent" To="Red" Duration="0:0:1" Storyboard.TargetProperty="(Effect).Color" />
<DoubleAnimationUsingKeyFrames RepeatBehavior="Forever" Storyboard.TargetProperty="(Effect).BlurRadius" AutoReverse="True">
<DiscreteDoubleKeyFrame KeyTime="0:0:0" Value="1"/>
<DiscreteDoubleKeyFrame KeyTime="0:0:0.15" Value="2"/>
<DiscreteDoubleKeyFrame KeyTime="0:0:0.3" Value="3"/>
<DiscreteDoubleKeyFrame KeyTime="0:0:0.45" Value="4"/>
<DiscreteDoubleKeyFrame KeyTime="0:0:0.6" Value="5"/>
<DiscreteDoubleKeyFrame KeyTime="0:0:0.75" Value="6"/>
<DiscreteDoubleKeyFrame KeyTime="0:0:0.9" Value="7"/>
<DiscreteDoubleKeyFrame KeyTime="0:0:1.05" Value="8"/>
<DiscreteDoubleKeyFrame KeyTime="0:0:1.2" Value="9"/>
<DiscreteDoubleKeyFrame KeyTime="0:0:1.35" Value="10"/>
<DiscreteDoubleKeyFrame KeyTime="0:0:1.5" Value="11"/>
</DoubleAnimationUsingKeyFrames>
</Storyboard>
<Style x:Key="AnimShape" TargetType="Shape">
<Setter Property="Stroke" Value="DarkGray"/>
<Setter Property="Effect" Value="{StaticResource Shiny}/>
<Style.Triggers>
<DataTrigger Binding="{Binding HasChannelWarnings}" Value="True">
<Setter Property="Stroke" Value="Red"/>
<DataTrigger.EnterActions>
<BeginStoryboard x:Name="ChannelAnim" Storyboard="{StaticResource ShinyAnim}"/>
</DataTrigger.EnterActions>
<DataTrigger.ExitActions>
<RemoveStoryboard BeginStoryboardName="ChannelAnim"/>
</DataTrigger.ExitActions>
</DataTrigger>
</Style.Triggers>
</Style>
如果我使用这种样式加载控件,而 HasChannelWarnings==false - 一切正常:当属性更改时 - 我得到闪亮的动画。但是,如果我加载控件,当 HasChannelWarnings==true 我得到一个错误:
无法解析属性路径“(Effect).Color”中的所有属性引用。验证适用的对象是否支持这些属性。
有人可以解释一下发生了什么吗?触发器会在效果器之前触发吗?如果是这样,如何正确应用此动画?