对于你的问题,只需要在你的HTML首行添加如下代码即可隐藏安全提示条:

<!-- saved from url=(0014)about:internet -->

 

WPF WebBrowser 加载 html ,出现安全警告, 运行 脚本和 activeX 控件,

还有一个可选方案是使用Winform的WebBrowser控件,不需要更改HTML代码,也不会出现安全提示,需要WindowsFormsHost:

xmlns:wf="clr-namespace:System.Windows.Forms;assembly=System.Windows.Forms"
        Title="MainWindow" Height="350" Width="525" Loaded="Window_Loaded">
    <Grid>
        <WindowsFormsHost>
            <wf:WebBrowser x:Name="webbrowser1"/>
        </WindowsFormsHost>
    </Grid>

 

可见: http://msdn.microsoft.com/en-us/library/ms751761(v=vs.110).aspx


We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place. 
Click HERE to participate the survey.

 

https://social.msdn.microsoft.com/Forums/sqlserver/zh-CN/f070e94a-92b3-451f-a4af-7fa5265eb818/wpf-webbrowser-html-activex-?forum=wpfzhchs

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2021-09-07
  • 2022-12-23
  • 2021-12-10
  • 2021-10-18
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2021-09-30
  • 2022-12-23
  • 2021-05-17
  • 2022-12-23
  • 2022-02-07
  • 2022-12-23
相关资源
相似解决方案