IE10加载JAVA控件_将WPF webbrowser控件设置为使用IE10模式

本文介绍了如何确保WPF WebBrowser控件在Windows 10和Visual Studio 2015环境下运行于IE10模式。通过修改注册表设置,特别是在管理员权限下运行时,设置Feature_BROWSER_EMULATION键值为0x00002af9,以实现所需的行为。同时,提供在DEBUG模式下使所有程序使用的代码示例。
摘要由CSDN通过智能技术生成

对于WPF webbrowser控件使用IE11模式需要,例如,在主窗口的构造函数中,添加以下代码:

var pricipal = new System.Security.Principal.WindowsPrincipal(

System.Security.Principal.WindowsIdentity.GetCurrent());

if(pricipal.IsInRole(System.Security.Principal.WindowsBuiltInRole.Administrator)) {

RegistryKey registrybrowser = Registry.LocalMachine.OpenSubKey

(@"Software\\Microsoft\\Internet Explorer\\Main\\FeatureControl\\FEATURE_BROWSER_EMULATION", true);

string myProgramName = Path.GetFileName(System.Reflection.Assembly.GetExecutingAssembly().Location);

var currentValue = registrybrowser.GetValue(myProgramName);

if (currentValue == null || (int)currentValue != 0x00002af9)

registrybrowser.SetValue(myProgramName, 0x00002af9, RegistryValueKind.DWord);

}

else

this.Title += " ( Первый раз запускать с правами админа )";

如果你想在Visual Studio中运行时看到WPF webbrowser控件在DEBUG模式下使用IE11模式,你需要在注册表中添加所有progmam“*” . 这可以使用以下代码完成:

var pricipal = new System.Security.Principal.WindowsPrincipal(

System.Security.Principal.WindowsIdentity.GetCurrent());

if (pricipal.IsInRole(System.Security.Principal.WindowsBuiltInRole.Administrator)) {

RegistryKey registrybrowser = Registry.LocalMachine.OpenSubKey

(@"Software\\Microsoft\\Internet Explorer\\Main\\FeatureControl\\FEATURE_BROWSER_EMULATION", true);

var currentValue = registrybrowser.GetValue("*");

if (currentValue == null || (int)currentValue != 0x00002af9)

registrybrowser.SetValue("*", 0x00002af9, RegistryValueKind.DWord);

}

else

this.Title += " ( Первый раз запускать с правами админа )";

检查windows 10和visual studio 2015 .

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值