我想在我的c#窗口应用程序里面调用视频文件。具体点就是当我按下按钮时自动调用本地的视频文件寻求高手。。静待!!

解决方案 »

  1.   

    http://download.csdn.net/source/1028232
      

  2.   

    http://www.pczpg.com/html/bianchengkaifa/C_/20090621/7721.html
      

  3.   

    使用MediaPlayer组件,AxWMPLib.AxWindowsMediaPlayer axPlayer;
    axPlayer.URL = filename;
    axPlayer.Ctlcontrols.play();
      

  4.   

    Windows Media Player控件
    OpenFileDialog opfPlayer = new OpenFileDialog();
                    DialogResult drPlayer = opfPlayer.ShowDialog();
                    if (drPlayer == DialogResult.OK)
                    {
                        string sFile = opfPlayer.FileName;
                        wmpPlayer.URL = sFile;
                    }
      

  5.   

    http://blog.csdn.net/zuoming120/archive/2009/11/09/4791768.aspx
    网上有很多的例子,这个是我的,你看看
      

  6.   

    这里看看 http://www.dzs-net.com
      

  7.   

    我的vs2008怎么没有找到Windows Media Player控件