Mega Code Archive
Path animation by code, duration, RepeatBehavior
//File:Window.xaml.vb
Imports System
Imports System.Windows
Imports System.Windows.Controls
Imports System.Windows.Input
Imports System.Windows.Media
Imports System.Windows.Media.Animation
Imports System.Windows.Shapes
Namespace WpfApplication1
Public Partial Class PathAnimationExample
Inherits Window
Public Sub New()
InitializeComponent()
path1.Freeze()
' For performance benefits.
Dim pa As New PointAnimationUsingPath()
pa.PathGeometry = path1
pa.Duration = TimeSpan.FromSeconds(5)
pa.RepeatBehavior = RepeatBehavior.Forever
circle1.BeginAnimation(EllipseGeometry.CenterProperty, pa)
End Sub
End Class
End Namespace