Ign*_*cia 4 .net silverlight animation xaml windows-phone-7
我正在尝试为Windows Phone 8中的列表框的选择更改设置动画.以下动画有效:
<ColorAnimation Storyboard.TargetProperty="(ContentControl.Foreground).(SolidColorBrush.Color)" Duration="00:00:00.25" From="{StaticResource PhoneForegroundColor}" To="{StaticResource PhoneAccentColor}" />
Run Code Online (Sandbox Code Playgroud)
但是下一个不起作用(System.InvalidOperationException:无法解析指定对象上的TargetProperty(ContentControl.Background).(SolidColorBrush.Color).
<ColorAnimation Storyboard.TargetProperty="(ContentControl.Background).(SolidColorBrush.Color)" Duration="00:00:00.25" From="{StaticResource PhoneForegroundColor}" To="{StaticResource PhoneAccentColor}" />
Run Code Online (Sandbox Code Playgroud)
对于我的生活,我无法发现原因.