1

我有一个关于窗口的 8 个应用程序 Webview Control 的问题,是否有使用 css 来管理 webview 的外观,我在这里使用它来查看提供的 html 数据的返回内容,但是你可以看到它从所有CSS,那么无论如何我可以管理 Webview 的 CSS 吗?

更新:这是代码

void ItemListView_SelectionChanged(object sender, SelectionChangedEventArgs e)
        {


            //  this code to populate the web view
            //  with the content of the selected blog post.
            // I'm passing the selected item from the previous items' page
            // and then pouplate the web view with the selected item Contents of the feed 


            if (this.UsingLogicalPageNavigation()) this.InvalidateVisualState();

            Selector list = sender as Selector;
            FeedItem selectedItem = list.SelectedItem as FeedItem;
            if (selectedItem != null)
            {
                this.contentView.NavigateToString(selectedItem.Contents);
            }
            else
            {
                this.contentView.NavigateToString("");
            }  

        }

在此处输入图像描述

4

1 回答 1

0

如果您使用 NavigateToString() 导航 - 您可以将您的 css 放在您导航到的 html 字符串中。否则 - 它应该可以正常工作,我们需要更多关于你实际在做什么的细节。

于 2013-01-30T16:30:42.257 回答