我需要的是打开 ANY 已实施 VLC ActiveX under WPF WebBrowser. 的网页

我刚刚做了一个非常简单的页面,在IE9 / 10下完美运行 .

但是当我打开它时,没有任何VLC :(

<html>
<head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <meta http-equiv="X-UA-Compatible" content="IE=9" />
    <meta http-equiv="cache-control" content="max-age=0" />
    <meta http-equiv="cache-control" content="no-cache" />
    <meta http-equiv="expires" content="0" />
    <meta http-equiv="expires" content="Tue, 01 Jan 1980 1:00:00 GMT" />
    <meta http-equiv="pragma" content="no-cache" />
    <title></title>

 </head>
<body>
    <object width="720" height="408" id='vlc2' events="True" codebase="http://downloads.videolan.org/pub/videolan/vlc/latest/win32/axvlc.cab"
        classid="clsid:9BE31822-FDAD-461B-AD51-BE1D1C159921">
        <embed type="application/x-vlc-plugin" pluginspage="http://www.videolan.org" version="VideoLAN.VLCPlugin.2"
            width="720" height="408" id="vlc1" />
        <param name="src" value="http://content.bitsontherun.com/videos/bkaovAYt-52qL9xLP.mp4" />
        <param name="ShowDisplay" value="True" />
        <param name="AutoPlay" value="False" />
    </object>
</body>
</html>

像测试的替代方法尝试在 WPF WebBrowserNOTHING 下打开this页面 .

有线索兄弟姐妹吗?

附: http://msdn.microsoft.com/en-us/library/vstudio/aa970906(v=vs.100).aspx没有帮助......

附: #2我刚刚测试了this页面以及我的页面使用WinForms WebBrowser控件并且它无法正常工作:(这是否意味着MS webBrowser控件根本不支持ActiveX或VLC ActiveX控件有限制?