我尝试制作简单的音频播放器,然后我尝试一下。歌曲结束后,播放器停止。
我想自动设置它并在播放列表中选择随机。我使用 URL 和 ListBox 作为播放列表..
这是自动播放部分的代码片段:
private void axWindowsMediaPlayer1_PlayStateChange(object sender, AxWMPLib._WMPOCXEvents_PlayStateChangeEvent e)
{
if (e.newState == 8)
{
Random rnd = new Random();
int nowPlayIndex = rnd.Next(listURLPlayers.Count);
axWindowsMediaPlayer1.URL = listURLPlayers[nowPlayIndex];
axWindowsMediaPlayer1.Ctlenabled = true;
axWindowsMediaPlayer1.Ctlcontrols.play();
listAudio.SelectedIndex = nowPlayIndex;
}
}
但是我尝试了一下,然后 URL 改变了,但没有自动播放。
我的代码有什么问题?
https://github.com/mudzakkir/MP3Player.git
请帮忙。