Double animation with path : Path « Windows Presentation Foundation « VB.Net Tutorial






<Page xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
      xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
      HorizontalAlignment="Center" VerticalAlignment="Center">

        
        <Canvas>
          <Canvas.Resources>
            <PathGeometry x:Key="animPath" Figures="M 0,30 A 30,30 180 0 1 60,30  30,30 180 0 1 0,30" />
          </Canvas.Resources>
        
          <Path Stroke="Blue" StrokeThickness="2" Data="{StaticResource animPath}" />
         
          <Path Stroke="Black" StrokeThickness="2" Data="M0,0 H20 M15,-5 L20,0 15,5">
            <Path.Triggers>
              <EventTrigger RoutedEvent="Line.Loaded">
                <BeginStoryboard>
                  <Storyboard>
        
                    <DoubleAnimationUsingPath Source="X"
                        RepeatBehavior="Forever" Duration="0:0:5"
                        Storyboard.TargetProperty="(Canvas.Left)"
                        PathGeometry="{StaticResource animPath}" />
        
                  </Storyboard>
                </BeginStoryboard>
              </EventTrigger>
            </Path.Triggers>
          </Path>
        </Canvas>

</Page>
WPF Double Animation With Path








16.70.Path
16.70.1.Trivial PathTrivial Path
16.70.2.Path DataPath Data
16.70.3.A Path based on Path.Data, PathGeometry and LineSegmentA Path based on Path.Data, PathGeometry and LineSegment
16.70.4.Path StrokeDashArrayPath StrokeDashArray
16.70.5.Sample ArcSample Arc
16.70.6.Four Overlapping CirclesFour Overlapping Circles
16.70.7.Path IntersectPath Intersect
16.70.8.Closed PathFigureClosed PathFigure
16.70.9.PathGeometry FigurePathGeometry Figure
16.70.10.Path with OuterGlowBitmapEffectPath with OuterGlowBitmapEffect
16.70.11.Path with M, C and ZPath with M, C and Z
16.70.12.Path and PolyLineSegment.PointsPath and PolyLineSegment.Points
16.70.13.Double animation with pathDouble animation with path
16.70.14.Matrix animation with pathMatrix animation with path
16.70.15.Create a polyline with a PathGeometryCreate a polyline with a PathGeometry
16.70.16.Expanding CirclesExpanding Circles
16.70.17.Simple ArcSimple Arc
16.70.18.Draw a Curved Line with PathFigure, LineSegment, ArcSegmentDraw a Curved Line with PathFigure, LineSegment, ArcSegment
16.70.19.LineSegment inside a PathFigureLineSegment inside a PathFigure
16.70.20.ArcSegment inside a PathFigureArcSegment inside a PathFigure
16.70.21.Set SweepDirection=Clockwise for ArcSegmentSet SweepDirection=Clockwise for ArcSegment
16.70.22.PathFigure and BezierSegmentPathFigure and BezierSegment
16.70.23.Path with BlurBitmapEffectPath with BlurBitmapEffect
16.70.24.Path with DropShadowBitmapEffectPath with DropShadowBitmapEffect
16.70.25.Path based on GeometryGroupPath based on GeometryGroup
16.70.26.Set for RenderTransformOrigin PathSet for RenderTransformOrigin Path
16.70.27.Use TransformGroup to group transformationsUse TransformGroup to group transformations
16.70.28.Transform PathTransform Path
16.70.29.Grouped ShapesGrouped Shapes
16.70.30.FileRule = Nonzero for PathFileRule = Nonzero for Path
16.70.31.FileRule = EvenOdd for PathFileRule = EvenOdd for Path
16.70.32.Path with EllipseGeometriesPath with EllipseGeometries
16.70.33.One Path with two EllipseGeometriesOne Path with two EllipseGeometries
16.70.34.Path with ShadowPath with Shadow
16.70.35.Dotted PathDotted Path