Quantcast
Channel: Button Animation
Viewing all articles
Browse latest Browse all 9

Button Animation

$
0
0

It is better to implement animations in XAML code, it is simple.

 

Code Snippet
  <Button Content="myButton" Width="50" Height="50">
    <Button.Triggers>
      <EventTrigger RoutedEvent="Button.MouseEnter">
        <EventTrigger.Actions>
          <BeginStoryboard>
            <Storyboard>
              <DoubleAnimation Storyboard.TargetProperty="Width"
                               From="0" To="100" Duration="0:0:2" />
              <DoubleAnimation Storyboard.TargetProperty="Height"
                               From="0" To="100" Duration="0:0:2" />
            </Storyboard>
          </BeginStoryboard>
        </EventTrigger.Actions>
      </EventTrigger>
    </Button.Triggers>
  </Button>

 

 


Viewing all articles
Browse latest Browse all 9

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>