I\'m new to WPF and I\'m mm trying to animate a shape to a "Flashing red" color animation in case I get some trigger value. Here is my relevant XAML code:
Create a new SolidColorBrush as value for the Fill Setter:
<Style TargetType="Rectangle"> <Setter Property="Fill"> <Setter.Value> <SolidColorBrush Color="{Binding AlertUnit.AlertColor.Color}"/> </Setter.Value> </Setter> ... </Style>