播放视频的com里的Window Media Player
什么属性是开始播放的,是FileName吗?
为什么我对象点 没有呢?
------解决方案--------------------通过AxWindowsMediaPlayer的Ctlcontrols获得WMPLib.IWMPControls接口,然后就可调用play、pause、stop等方法.
AxWMPLib.AxWindowsMediaPlayer axWindowsMediaPlayer1=new AxWMPLib.AxWindowsMediaPlayer();
axWindowsMediaPlayer1.currentMedia=axWindowsMediaPlayer1.newMedia(filename);//加载要播放的文件
WMPLib.IWMPControls Media=axWindowsMediaPlayer1.Ctlcontrols;//获得IWMPControls接口
Media.play();
Media.pause();
Media.stop();