Ejemplo n.º 1
0
 private void Play_StopSong_Execute(object sender, RoutedEventArgs e) /* Stop a song that is currently playing */
 {
     /* Stop playnig any song that is currently playing */
     if (songPlayer != null)
     {
         songPlayer.StopWAVFile();
     }
 }