WPF VB.Net Tutorial

    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    Title="FillingExample" Height="300" Width="300">
  
    
      
        
          
            
                                Storyboard.TargetProperty="(Ellipse.Width)"
                  From="10" To="300" FillBehavior="Stop" />
            

          

        
      

    
  


//File:Window.xaml.vb
Imports System
Imports System.Windows
Imports System.Windows.Threading
Imports System.Diagnostics
Namespace Holding
  Public Partial Class Window2
    Inherits Window
    Private t As New DispatcherTimer()
    Private start As DateTime
    Public Sub New()
      InitializeComponent()
      AddHandler t.Tick, New EventHandler(AddressOf OnTimerTick)
      t.Interval = TimeSpan.FromSeconds(0.5)
      t.Start()
      start = DateTime.Now
    End Sub
    Private Sub OnTimerTick(sender As Object, e As EventArgs)
      Dim elapsedTime As TimeSpan = DateTime.Now - start
      Debug.WriteLine((elapsedTime.ToString() & ": ") + myEllipse.Width)
    End Sub
  End Class
End Namespace