我需要的是打开任何已实施的网页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 WebBrowser
,但没有任何反应。
有知道的兄弟姐妹吗?
PS http://msdn.microsoft.com/en-us/library/vstudio/aa970906(v=vs.100).aspx 没有帮助...
PS #2 我刚刚测试了这个页面以及我的带有 WinForms WebBrowser 控件的页面,但它不起作用:(这是否意味着 MS webBrowser 控件根本不支持 ActiveX 或 VLC ActiveX 控件受到某种限制?