Create an animation using the storyboard : Storyboard « Windows Presentation Foundation « VB.Net






Create an animation using the storyboard

Create an animation using the storyboard
       

<Window x:Class="StoryboardAnimation"
  xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  Title="Storyboard Animation" Height="300" Width="300">
  <Canvas>
    <Rectangle x:Name="rect1" Width="100" Height="50" Fill="Blue">
      <Rectangle.Triggers>
        <EventTrigger RoutedEvent="Rectangle.Loaded">
          <EventTrigger.Actions>
            <BeginStoryboard>
              <Storyboard>
                <DoubleAnimation
                  Storyboard.TargetName="rect1"
                  Storyboard.TargetProperty="(Canvas.Left)" From="0" To="200"
                  Duration="0:0:5" RepeatBehavior="Forever" AutoReverse="True" />

              </Storyboard>
            </BeginStoryboard>
          </EventTrigger.Actions>
        </EventTrigger>
      </Rectangle.Triggers>
    </Rectangle>
  </Canvas>
</Window>

   
    
    
    
    
    
    
  








Related examples in the same category

1.Targeting named elementsTargeting named elements
2.Write StoryBoard for Animating Width from one value to another with duration and RepeatBehaviorWrite StoryBoard for Animating Width from one value to another with duration and RepeatBehavior
3.Limit the Frame Rate of a StoryboardLimit the Frame Rate of a Storyboard
4.Animation RepeatBehavior Forever
5.Object Loading Event Trigger EventObject Loading Event Trigger Event
6.Define Animation Trigger and StoredBoard for EllipseDefine Animation Trigger and StoredBoard for Ellipse
7.Time based RepeatBehaviourTime based RepeatBehaviour
8.Two color animationsTwo color animations
9.Storyboard for Animating ColorStoryboard for Animating Color
10.Remove Animations with StoryboardRemove Animations with Storyboard
11.Storyboard: A child with a fill periodStoryboard: A child with a fill period