标题几乎概括了它。我遇到了 ColorAnimation 无法正常工作的问题。我最终发现 TargetProperty 必须用括号括起来......虽然我不完全明白为什么?
有任何想法吗?(特别注意:Storyboard.TargetProperty=") 为什么它们必须在括号中?
<Style.Resources>
<ColorAnimation x:Key="RecordingAnimation" Storyboard.TargetProperty="(Background).(SolidColorBrush.Color)" From="White" To="Blue" Duration="0:0:0.5" AutoReverse="True" RepeatBehavior="Forever"/>
<ColorAnimation x:Key="StopRecordingAnimation" Storyboard.TargetProperty="(Background).(SolidColorBrush.Color)" To="White" Duration="0:0:0.1"/>
</Style.Resources>