Created
November 29, 2013 01:09
-
-
Save gyuwon/7700227 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<Storyboard x:Key="FlickerAnimation"> | |
<DoubleAnimation Storyboard.TargetProperty="Opacity" AutoReverse="True" RepeatBehavior="Forever" Duration="0:0:0.5" From="0.0" To="1.0"/> | |
</Storyboard> | |
<!-- ... --> | |
<Style.Triggers> | |
<DataTrigger Binding="{Binding SomeProperty}" Value="SomeValue"> | |
<DataTrigger.EnterActions> | |
<BeginStoryboard Name="Flicker" Storyboard="{StaticResource FlickerAnimation}" /> | |
</DataTrigger.EnterActions> | |
<DataTrigger.ExitActions> | |
<StopStoryboard BeginStoryboardName="Flicker" /> | |
</DataTrigger.ExitActions> | |
</DataTrigger> | |
</Style.Triggers> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment