如何从重定向网页重载CSS

时间:2016-09-13 09:08:28

标签: c# html css webview

我在网站上进行了重定向,现在我不知道如何重载/覆盖css。

<!DOCTYPE html>

<html lang="en" xmlns="http://www.w3.org/1999/xhtml">
<head>
    <meta http-equiv="refresh" content="0; url=example.com" />
    <link rel="stylesheet" href="main.css">
    <title></title>
</head>
<body>

 private void MainPage_Loaded(object sender, RoutedEventArgs e)
 {
            string src = "ms-appx-web:///Assets/MyHTMLPage.html";
            this.MainWebView.Navigate(new Uri(src));
 }

0 个答案:

没有答案