Ответ 1
Я не пробовал это сам, но поскольку правила стиля CSS могут быть включены в документ, используя тег <style>
, как в:
<html>
<head>
<style type="text/css">
h1 {color:red}
p {color:blue}
</style>
</head>
вы можете попробовать:
HtmlElement head = webBrowser1.Document.GetElementsByTagName("head")[0];
HtmlElement styleEl = webBrowser1.Document.CreateElement("style");
IHTMLStyleElement element = (IHTMLStyleElement)styleEl.DomElement;
IHTMLStyleSheetElement styleSheet = element.styleSheet;
styleSheet.cssText = @"h1 { color: red }";
head.AppendChild(styleEl);
a go. Вы можете найти дополнительную информацию о IHTMLStyleElement здесь.
Изменить
Кажется, ответ намного проще, чем я изначально думал:
using mshtml;
IHTMLDocument2 doc = (webBrowser1.Document.DomDocument) as IHTMLDocument2;
// The first parameter is the url, the second is the index of the added style sheet.
IHTMLStyleSheet ss = doc.createStyleSheet("", 0);
// Now that you have the style sheet you have a few options:
// 1. You can just set the content as text.
ss.cssText = @"h1 { color: blue; }";
// 2. You can add/remove style rules.
int index = ss.addRule("h1", "color: red;");
ss.removeRule(index);
// You can even walk over the rules using "ss.rules" and modify them.
Я написал небольшой тестовый проект, чтобы убедиться, что это работает. Я пришел к этому окончательному результату, выполнив поиск по MSDN для IHTMLStyleSheet, после чего я столкнулся с этой страницей, эта страница и этот.