【Set WebBrowser Core to IE 11 for Application】古之立大事者,不惟有超世之才,亦必有坚忍不拔之志。这篇文章主要讲述Set WebBrowser Core to IE 11 for Application相关的知识,希望能为你提供帮助。
private void setReg()
{
string myAppPath = System.IO.Path.GetFileName(System.Reflection.Assembly.GetExecutingAssembly().Location);
RegistryKey key = Registry.LocalMachine.OpenSubKey(@"SOFTWAREMicrosoftInternet ExplorerMAINFeatureControlFEATURE_BROWSER_EMULATION", true);
int ieVer = 11001;
if (key != null)
{
key.SetValue(myAppPath, ieVer, RegistryValueKind.DWord);
key.SetValue(myAppPath.Replace(".exe", ".vshost.exe"), ieVer, RegistryValueKind.DWord);
//调试运行需要加上,否则不起作用
}
key = Registry.LocalMachine.OpenSubKey(@"SOFTWAREWow6432NodeMicrosoftInternet ExplorerMAINFeatureControlFEATURE_BROWSER_EMULATION", true);
if (key != null)
{
key.SetValue(myAppPath, ieVer, RegistryValueKind.DWord);
key.SetValue(myAppPath.Replace(".exe", ".vshost.exe"), ieVer, RegistryValueKind.DWord);
//调试运行需要加上,否则不起作用
}
}
推荐阅读
- 在Android Studio中配置openCV
- Android Studio--家庭记账本
- 安卓记账本开发——业务逻辑的封装
- 安卓基础(AndroidViewModel)
- Android记账本开发(数据库开发)
- Android头像更换之详细操作
- Android开发数据库Sqlite1
- 使用Application Insights监控网站可用性
- 安卓开发学习04