Trying to play two sounds with some delay in uwp app

92 Views Asked by At

Hi I' m trying to play two sounds with some delay in uwp app on page intialization

I am trying Like this but it is mixed .how to achieve that. C# Code

public L_Col_Act()
        {
            this.InitializeComponent();
            mediaElement1.Source = new Uri("ms-appx:///Assets/LearnColor/Objectnamesmp3/colors.mp3");
            mediaElement1.AutoPlay = true;

            mediaElement2.Source=new Uri("ms-appx:///Assets/LearnColor/Objectnamesmp3/yellow color.mp3");
            mediaElement2.AutoPlay = true;


        }
1

There are 1 best solutions below

0
On BEST ANSWER

after one sound complete then play another sound. at once

You could play one sound first, and register MediaElement.MediaEnded event

In MediaEnd event handler, you could start to play another sound.

private void MediaElement_MediaEnded(object sender, RoutedEventArgs e)
{
     mediaElement2.Source=new Uri("ms-appx:///Assets/LearnColor/Objectnamesmp3/yellow color.mp3");
     mediaElement2.AutoPlay = true;
}