как мне воспроизвести песню в приложении silverlight wp7?
Я знаю, как сделать это в рамках xna с MEdiaPlayer, но я не знаю, как сделать это в silverlight.это начало с проблемы, что я не знаю, как загрузить песню как контент.
кто может показать мне пример кода?
в xna это выглядит так:
private void PlayMusic(Song song)
{
// Due to the way the MediaPlayer plays music,
// we have to catch the exception. Music will play when the game is not tethered
try
{
// Play the music
MediaPlayer.Play(song);
// Loop the currently playing song
MediaPlayer.IsRepeating = true;
}
catch { }
}