将样式表链接到c#wpf应用程序中的本地html页面

时间:2015-09-03 14:45:59

标签: c# wpf

我有一个带有浏览器控件的WPF,指向本地HTML文件。

我的foreach($results as $result){ $score = 0; if($result['year']==$postedyear{$score=$score+30;} //continue with the other with the same logic. } .html个文件位于标有.css的文件夹中,但似乎无论我如何链接WebResources文件中的样式表样式都没有&#39 ; t show。

My Solutions Explorer

index.html

的index.html

Solution MyProject
-- MyProject
---- Properties
---- References
---- WebResources
  ---- Index.html
  ---- Style.css

的style.css

<!DOCTYPE HTML>
<html>
<head>
    <title></title>
        <meta charset="utf-8">
        <meta http-equiv="X-UA-Compatible" content="IE=edge">
        <meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">

        <link rel="stylesheet" href="WebResources\Style.css" />
        <!-- Also Tried "<link rel="stylesheet" href="Full\Path\To\Style.css" /> -->
</head>
<body>
    <div class="container">
        <h1>This should be very big</h1>
    </div>
</body>
</html>

2 个答案:

答案 0 :(得分:1)

如果index.html和Style.css位于同一文件夹中,则应使用:

<link rel="stylesheet" href="Style.css" />

我刚试过一个测试应用程序,效果很好。 让我知道。

答案 1 :(得分:0)

你试过正斜杠(/)吗? html页面通常使用这些而不是Windows样式的反斜杠来引用其他资源