//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