我想阻止页面中的图片加载到WebBrowser
控件中。我希望它在DocumentCompleted
事件发生之前发生。有没有办法做到这一点?
答案 0 :(得分:8)
试试这段代码:
RegistryKey RegKey = Registry.CurrentUser.OpenSubKey(@"Software\Microsoft\Internet Explorer\Main", true);
RegKey.SetValue("Display Inline Images", "no");
它更改了注册表项。
答案 1 :(得分:1)