タイトルはそれをかなり要約しています。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>