私は銀色のwp7アプリで曲を再生するには?WP7のSilverlightアプリケーションで歌やサウンドを再生するのが暑いですか?
私はMEdiaPlayerでxnaフレームワークでそれを行う方法を知っていますが、私は銀色でそれを作る方法は分かりません。それは問題として始まります、私はコンテンツとして曲を読み込む方法を知らない。
私にコード例が表示されますか?あなたが唯一の方法はMediaElement
である携帯電話のメディアライブラリからSong
を再生している場合
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 { }
}