我有一个关于窗口的 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("");
}
}