I'm implementing a background audio Windows 8 Store App with C#/XAML, and I managed to run audio in the background, using a MediaElement with BackgroundCapableMedia. According to that blog post, I should be able to play playlists.
However when the track is finished, I can't find how to move to the next track. If I use mediaElement.MediaEnded
, the event handler is not called when the application is in the background.