Play Back Audio or Video with a MediaTimeline : MediaElement « Windows Presentation Foundation « VB.Net Tutorial






<Window x:Class="Main"
  xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  Title="" Height="300" Width="300">
  <Window.Resources>
    <PathGeometry x:Key="AnimationPathGeometry" Figures="M 50,150 C 100,-200 500,400 450,100 400,-100 285,400 50,150" />
    <Storyboard x:Key="MatrixAnimationStoryboard">
      <MatrixAnimationUsingPath RepeatBehavior="Forever" Duration="0:0:5" AutoReverse="True" Storyboard.TargetName="BorderMatrixTransform"
        Storyboard.TargetProperty="Matrix" DoesRotateWithTangent="True" PathGeometry="{StaticResource AnimationPathGeometry}" />
    </Storyboard>
  </Window.Resources>
  <Viewbox>
    <MediaElement x:Name="mePlayer" Stretch="Fill">
      <MediaElement.Triggers>
        <EventTrigger RoutedEvent="MediaElement.Loaded">
          <BeginStoryboard>
            <Storyboard>
              <MediaTimeline Storyboard.TargetName="mePlayer" Source="clock.avi" RepeatBehavior="Forever" />
            </Storyboard>
          </BeginStoryboard>
        </EventTrigger>
      </MediaElement.Triggers>
    </MediaElement>
  </Viewbox>
</Window>
WPF Play Back Audio Or Video With A Media Timeline








16.123.MediaElement
16.123.1.Media Element with wmv fileMedia Element with wmv file
16.123.2.Media element in clock modeMedia element in clock mode
16.123.3.Play wmv file with MediaTimelinePlay wmv file with MediaTimeline
16.123.4.Play Back Audio or Video with a MediaTimelinePlay Back Audio or Video with a MediaTimeline
16.123.5.Play wmv filePlay wmv file
16.123.6.Play video with MediaElementPlay video with MediaElement
16.123.7.Play a Media FilePlay a Media File
16.123.8.Play with MediaPlayerPlay with MediaPlayer
16.123.9.Play Audio AsynchronouslyPlay Audio Asynchronously