Why does Play() on media element reset or otherwise ignore set position?

177 Views Asked by At

I want to pause and play a mp3 using 2 buttons like this:

private void Button_Click_1(object sender, RoutedEventArgs e)
{
    TimeSpan time_input = media.Position;
    media.Pause();
}

private void Button_Click_2(object sender, RoutedEventArgs e)
{
    media.Play();
    media.Position = time_input;
}

but clicking the second button plays media from beginning instead of from time_input span why?

1

There are 1 best solutions below

0
On

In Button_Click_1 method TimeSpan time_input = media.Position; will create a new time_input variable within the scope of that method. You won't be able to use it in the other method.

private TimeSpan time_input = new TimeSpan(0);
private void Button_Click_1(object sender, RoutedEventArgs e)
{
    time_input = media.Position;
    media.Pause();
}

private void Button_Click_2(object sender, RoutedEventArgs e)
{
    media.Play();
    media.Position = time_input;
}