Starting an animation with a trigger : EventTrigger « Windows Presentation Foundation « C# / C Sharp






Starting an animation with a trigger

Starting an animation with a trigger
     

<Page xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
      xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
      HorizontalAlignment="Center" VerticalAlignment="Center">
        
        <Ellipse Name="myEllipse" Fill="Red" Height="100" Width="10">
          <Ellipse.Triggers>
            <EventTrigger RoutedEvent="Ellipse.MouseEnter">
              <BeginStoryboard>
                <Storyboard>
                  <DoubleAnimation Storyboard.TargetProperty="(Ellipse.Width)"
                                   To="300" Duration="0:0:5" />
                </Storyboard>
              </BeginStoryboard>
            </EventTrigger>
          </Ellipse.Triggers>
        </Ellipse>


</Page>

   
    
    
    
    
  








Related examples in the same category

1.Use Triggers to Play Audio When a User Interacts with a ControlUse Triggers to Play Audio When a User Interacts with a Control
2.Style With MultiTriggerStyle With MultiTrigger
3.Pausing and resuming a storyboard with triggersPausing and resuming a storyboard with triggers
4.EventTrigger Ellipse.MouseLeftButtonDownEventTrigger Ellipse.MouseLeftButtonDown
5.EventTrigger Ellipse.MouseLeftButtonUpEventTrigger Ellipse.MouseLeftButtonUp
6.Playing a sound with a triggerPlaying a sound with a trigger
7.Trigger Property=FrameworkElement.IsFocusedTrigger Property=FrameworkElement.IsFocused