public void Pausar()
 {
     if (Reproductor.PlaybackState == PlaybackState.Playing)
     {
         Reproductor.Pause();
     }
 }
 public void ReproducirVistaPrevia(string direccionDeCancion)
 {
     if (Reproductor.PlaybackState == PlaybackState.Stopped)
     {
         Lector = new Mp3FileReader(direccionDeCancion);
         Reproductor.DeviceNumber = 0;
         Reproductor.Init(Lector);
         Reproductor.Play();
         Reproductor.Volume = Volumen;
     }
     else if (Reproductor.PlaybackState == PlaybackState.Playing)
     {
         Reproductor.Pause();
     }
     else if (Reproductor.PlaybackState == PlaybackState.Paused)
     {
         Reproductor.Play();
     }
 }