Exemplo n.º 1
0
        public void GetSong()
        {
            SongData song = playList.getCurrentSong();

            if (song != null)
            {
                if (mediaPlayer.Source == null || !song.songUri.AbsolutePath.Equals(mediaPlayer.Source.AbsolutePath))
                {
                    mediaPlayer.Source = song.songUri;
                    loadSongInfoInWindow(albumArt, songInfo);
                    mediaPlayer.Position = new TimeSpan(0);
                }
            }
        }