我在visual c ++ 2010中使用Windows窗体应用程序来创建嵌入了Windows Media Player的GUI。我正在尝试创建一个按钮,按下它时会播放两个连续的视频文件。当我使用下面的代码时,只播放最后一个avi文件。你知道为什么第一个avi doens不玩吗?
private: System::Void BtnB_Click(System::Object^ sender, System::EventArgs^ e) {
axWindowsMediaPlayer1->Ctlcontrols->play();
axWindowsMediaPlayer1->URL="DG.avi";
axWindowsMediaPlayer1->Ctlcontrols->play();
axWindowsMediaPlayer1->URL="IG.avi";
}
谢谢。