WPF VB.Net Tutorial

    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    Title="AnimatedVideoWindow" Height="450" Width="400">
  
    
                            RepeatBehavior="Forever">
          To="360" Duration="0:0:2" RepeatBehavior="Forever">
    
  

  
    
      
        
          
        

      
      
        
          
        

            
    

      Play (Declarative)
      Stop (Declarative)
      Play (Code)
    
      
        
      

    
  


//File:Window.xaml.vb
Imports System
Imports System.Collections.Generic
Imports System.Text
Imports System.Windows
Imports System.Windows.Controls
Imports System.Windows.Data
Imports System.Windows.Documents
Imports System.Windows.Input
Imports System.Windows.Media
Imports System.Windows.Media.Imaging
Imports System.Windows.Shapes
Imports System.Windows.Media.Animation
Namespace SoundAndVideo
  Public Partial Class AnimatedVideoWindow
    Inherits System.Windows.Window
    Public Sub New()
      InitializeComponent()
    End Sub
    Private Sub cmdPlayCode_Click(sender As Object, e As RoutedEventArgs)
      Dim timeline As New MediaTimeline(New Uri("test.mpg", UriKind.Relative))
      timeline.RepeatBehavior = RepeatBehavior.Forever
      Dim clock As MediaClock = timeline.CreateClock()
      Dim player As New MediaPlayer()
      player.Clock = clock
      Dim videoDrawing As New VideoDrawing()
      videoDrawing.Rect = New Rect(150, 0, 100, 100)
      videoDrawing.Player = player
      Dim brush As New DrawingBrush(videoDrawing)
      Me.Background = brush
      clock.Controller.Begin()
    End Sub
  End Class
End Namespace