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?
In
Button_Click_1
methodTimeSpan time_input = media.Position;
will create a newtime_input
variable within the scope of that method. You won't be able to use it in the other method.