Ejemplo n.º 1
0
 public void StopSound(ISound sound)
 {
     if (sound != null)
     {
         soundEngine.StopSound(sound);
     }
 }
Ejemplo n.º 2
0
 public static void StopVideo()
 {
     if (video != null)
     {
         soundEngine.StopSound(video);
     }
 }
Ejemplo n.º 3
0
 public void StopVideo()
 {
     if (video != null)
     {
         soundEngine.StopSound(video);
         videoSource.Dispose();
         videoSource = null;
         video       = null;
     }
 }