1

我在 Windows 窗体应用程序中使用 Windows 媒体播放器。我的播放列表中有 10 个媒体项目。富,富1,富2,富3 ....

现在我的播放列表正在播放让我们说 foo1。现在点击按钮我想播放项目 foo6。我怎么玩这个?即如何更改我当前的播放项目 foo6 ?

如果不清楚,请发表评论,我将添加更多信息。

编辑:以下是创建新播放列表的代码。

WindowsMediaPlayerClass wmp = new WindowsMediaPlayerClass();
playlist = WMPLeft.playlistCollection.newPlaylist("myplaylist1");
for (int i = 0; i < FOO.Length; i++)
{
    media = WMPLeft.newMedia(FOO[i]);                          
    playlist.appendItem(media);  
}

我想要的是这样的

WMPLeft.playlist.Item(3).play();

这是错误的。但这是我想要的那种代码。

4

1 回答 1

2

经过大量研究,我发现了这个 msdn 链接,它显示了如何做我想做的事。

// Declare a variable to hold the position of the media item 
// in the current playlist. An arbitrary value is supplied here.
int index = 3;

// Get the media item at the fourth position in the current playlist.
WMPLib.IWMPMedia media = player.currentPlaylist.get_Item(index);

// Play the media item.
player.Ctlcontrols.playItem(media);

链接到 MSDN

于 2013-09-07T19:30:20.897 回答