Skip to content

Instantly share code, notes, and snippets.

@felipebaltazar
Created August 14, 2020 15:03
Show Gist options
  • Save felipebaltazar/c7dafb6838e5b9ed050e4e784368e163 to your computer and use it in GitHub Desktop.
Save felipebaltazar/c7dafb6838e5b9ed050e4e784368e163 to your computer and use it in GitHub Desktop.
<Button Text="Testing Fade Animation">
<Button.Behaviors>
<behaviors:AnimationBehavior EventName="Clicked">
<behaviors:AnimationBehavior.AnimationType>
<behaviors:FadeAnimation Easing="BounceIn" Duration="100"/>
</behaviors:AnimationBehavior.AnimationType>
</behaviors:AnimationBehavior>
</Button.Behaviors>
</Button>
<Label Text="Shake">
<Label.Behaviors>
<behaviors:AnimationBehavior Command="{Binding MyCommand}">
<behaviors:AnimationBehavior.AnimationType>
<behaviors:ShakeAnimation/>
</behaviors:AnimationBehavior.AnimationType>
</behaviors:AnimationBehavior>
</Label.Behaviors>
</Label>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment