Windows Phone 7中的媒体播放器

时间:2011-08-05 12:50:05

标签: c# windows-phone-7

我正在尝试使用媒体播放器播放歌曲集中的音乐

是否可以编码播放音乐无法暂停

以下是我的代码:

private void songListBox_SelectionChanged(object sender, SelectionChangedEventArgs e)
{
    songSelectedIndex = songListBox.SelectedIndex;
    using (var ml = new MediaLibrary())
    {
        FrameworkDispatcher.Update();
        MediaPlayer.Play(ml.Songs[songSelectedIndex]);
        MediaPlayer.IsRepeating = true;

        MediaPlayer.Volume = 20.0f;
    }
}

我尝试使用 CanPauseProperty ,但是出现了错误

MediaElement.CanPauseProperty = false;

错误:无法将类型'bool'隐式转换为'System.Windows.DependencyProperty'

1 个答案:

答案 0 :(得分:1)

MediaPlayer不支持此功能。

如果您使用的是BackgroundAudioPlayer(在Mango中),那么您可以控制哪些导航选项可用。