We have a TextBlock in a Windows Store (8.1) app e.g.
<TextBlock Style="{StaticResource NameItemCellStyle}"
Text="{Binding Name}"/>
When the name value is updated I would like to temporarily change the TextColor and Background Colour of the TextBlock for 5 seconds.
It looks like some that could be solved with a Behaviour but I'm not sure. If it was Javascript I would add a CSS class "redBlock" and then kick of a timer to remove that CSS class in 5 minutes.
How would this be done in Windows Store XAML?