= =```不敢装回2005
不然2008做的项目转换不了``
要不我把播放器代码发给大家参考下
不是很完整
但还是希望能给你们带来帮助
我记得以前有看过别人发播放器的代码 比我还要完整
你们也可以去搜索一下
--------------------------------------------------------
axWindowsMediaPlayer1.settings.playCount = 1;//播放次数
axWindowsMediaPlayer1.URL = ;//路径
axWindowsMediaPlayer1.Ctlcontrols.play();//播放
axWindowsMediaPlayer1.Ctlcontrols.stop();//停止
axWindowsMediaPlayer1.Ctlcontrols.pause();//暂停
axWindowsMediaPlayer1.fullScreen = true;//切换为全屏
axWindowsMediaPlayer1.Ctlcontrols.previous();//上一曲
axWindowsMediaPlayer1.Ctlcontrols.next();//下一曲
axWindowsMediaPlayer1.Ctlcontrols.currentPosition
//当前时间
axWindowsMediaPlayer1.currentMedia.duration
//音频文件总长度
axWindowsMediaPlayer1.currentMedia.durationString;
//时间总长
axWindowsMediaPlayer1.Ctlcontrols.fastForward();//快进
axWindowsMediaPlayer1.Ctlcontrols.fastReverse();//快退
axWindowsMediaPlayer1.uiMode = "full";
//显示视频音频和全部按钮
axWindowsMediaPlayer1.settings.autoStart =true;//设置是否具有自动播放功能
播放或暂停
if (axWindowsMediaPlayer1.playState == WMPLib.WMPPlayState.wmppsPaused)
axWindowsMediaPlayer1.Ctlcontrols.play();
else
axWindowsMediaPlayer1.Ctlcontrols.pause();