C#-播放器相关

axWindowsMediaPlayer1.URL= 设置路径
axWindowsMediaPlayer1.Ctlcontrols.play();开始
axWindowsMediaPlayer1.Ctlcontrols.pause();暂停
axWindowsMediaPlayer1.currentMedia.durationString;总长度 **:**
axWindowsMediaPlayer1.currentMedia.getItemInfo("Title");标题
axWindowsMediaPlayer1.Ctlcontrols.currentPositionString;进度 **:**
axWindowsMediaPlayer1.settings.volume.ToString();音量
axWindowsMediaPlayer1.settings.volume++音量++
axWindowsMediaPlayer1.settings.setMode("loop", true);单曲循环
axWindowsMediaPlayer1.settings.setMode("shuffle", true);取消单曲循环

原文地址:https://www.cnblogs.com/csnd/p/12062164.html