Play Audio Asynchronously : MediaElement « Windows Presentation Foundation « VB.Net Tutorial






<Window x:Class="SoundAndVideo.SoundPlayerTest"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    Title="SoundPlayerTest" Height="300" Width="300" Closed="window_Closed">
    <StackPanel>
       <Button Click="cmdPlayAudioAsync_Click">Play Audio Asynchronously</Button>
    </StackPanel>
</Window>
//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.Media
Imports System.ComponentModel
Imports System.IO

Namespace SoundAndVideo
  Public Partial Class SoundPlayerTest
    Inherits System.Windows.Window
    Private player As New MediaPlayer()

    Public Sub New()
      InitializeComponent()
    End Sub
    Private Sub cmdPlayAudioAsync_Click(sender As Object, e As RoutedEventArgs)
      Dim player As New SoundPlayer()
      player.SoundLocation = "test.wav"
      player.Load()
      player.Play()
    End Sub

    Private Sub window_Closed(sender As Object, e As EventArgs)
      player.Close()
    End Sub
  End Class
End Namespace
WPF Play Audio Asynchronously








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