1

我刚刚开始使用 WP8 开发,我已经偶然发现了我的第一个问题:我遵循了如何为 Windows Phone 创建你的第一个应用程序教程,现在我遵循了另一个教程来尝试覆盖浏览器的 CSS。当我运行应用程序时,CSS 没有改变,我只看到原始网页。

CSS 文件被调用mobile.css并位于 Resources 文件夹中。它的内容很简单

body {

background-color: blue;

}

这些是它的属性:

在此处输入图像描述

到目前为止(非常简单的)应用程序代码是这样的:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Net;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Navigation;
using Microsoft.Phone.Controls;
using Microsoft.Phone.Shell;
using MiniBrowser.Resources;
using System.IO;
using System.Windows.Resources;

namespace MiniBrowser
{
public partial class MainPage : PhoneApplicationPage
{
    public MainPage()
    {
        InitializeComponent();
    }

    private void Go_Click(object sender, RoutedEventArgs e)
    {
        string site = URL.Text;
        MiniBrowser.Navigate(new Uri(site, UriKind.Absolute));
    }

    private void BrowserLoadCompleted(object sender, NavigationEventArgs e)
    {
        ApplyStyleSheet("mobile.css");

        VisualStateManager.GoToState(this, "Loaded", true);
    }

    private void ApplyStyleSheet(string cssFilename)
    {
        //var sr = Application.GetResourceStream(new Uri(cssFilename, UriKind.Relative));
        StreamResourceInfo sr = Application.GetResourceStream(new Uri("/MiniBrowser;component/Resources/mobile.css", UriKind.Relative));
        using (var strm = sr.Stream)
        using (var reader = new StreamReader(strm))
        {
            string css = reader.ReadToEnd().Replace("\r", "").Replace("\n", "");

            var scriptToRun =
                "(function() {" +
                "  var pa= document.getElementsByTagName('head')[0] ; " +
                "  var el= document.createElement('style'); " +
                "  el.type= 'text/css'; " +
                "  el.media= 'screen'; " +
                "  el.styleSheet.cssText= '" + css + "'; " +
                "  pa.appendChild(el); " +
                "})();";
            MiniBrowser.InvokeScript("eval", scriptToRun);
        }
    }
}
}

其他一切正常:显示浏览器并正确加载页面。唯一的问题是该mobile.css文件似乎被忽略了。

4

1 回答 1

0

将 css 文件添加为资源:

windows phone css 作为资源

使用以下代码获取内容:

StreamResourceInfo sr = Application.GetResourceStream(new Uri("/YourAppName;component/Resources/Custom.css", UriKind.Relative));
于 2013-11-03T19:57:12.123 回答