Advertisement
Guest User

Untitled

a guest
Aug 18th, 2019
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 0.97 KB | None | 0 0
  1. <Style TargetType="{x:Type Button}" x:Key="Awsome">
  2.             <Style.Triggers>
  3.                 <EventTrigger RoutedEvent="MouseEnter">
  4.                     <BeginStoryboard>
  5.                         <Storyboard>
  6.  
  7.                             <ColorAnimation Storyboard.TargetProperty="Background.(SolidColorBrush.Color)"
  8.                                            From="Aqua" AutoReverse="True"
  9.                                            RepeatBehavior="Forever"
  10.                                            To="Blue" Duration="0:0:.9">
  11.                             </ColorAnimation>
  12.  
  13.                             <DoubleAnimation Storyboard.TargetProperty="Width"
  14.                                             From="100" RepeatBehavior="Forever"
  15.                                             To="200" Duration="0:0:.3" AutoReverse="True"/>
  16.                         </Storyboard>
  17.                     </BeginStoryboard>
  18.                 </EventTrigger>
  19.             </Style.Triggers>
  20.         </Style>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement