web-dev-qa-db-ja.com

WebBrowserコントロールにCSSを挿入する方法は?

私の知る限り、JavaScriptをDOMに挿入する方法があります。以下は、webbrowserコントロールを使用してJavaScriptを挿入するサンプルコードです。

HtmlElement head = webBrowser1.Document.GetElementsByTagName("head")[0];
HtmlElement scriptEl = webBrowser1.Document.CreateElement("script");
IHTMLScriptElement element = (IHTMLScriptElement)scriptEl.DomElement;
element.text = "function sayHello() { alert('hello') }";
head.AppendChild(scriptEl);
webBrowser1.Document.InvokeScript("sayHello");

CssをDOMに挿入する簡単な方法はありますか?

18
DEN

私はこれを自分で試しませんでしたが、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);

前。 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を検索してこの最終結果に到達しました。そこで、 このページこのページ 、および これ に遭遇しました。

28
paracycle

私にとっては、最初にDocumentText.でスタイルを設定するのと同じくらい簡単に思えましたが、明らかにベストプラクティスではありませんが、単純なCSSで機能します。

webBrowser1.DocumentText = "<style> " +
                                 "body { " +
                                    "font-family: Algerian; " +
                                  "} " +
                            "</style> "+
                            "<a href='https://www.google.ca'>Test</a>";
0
clamchoda