XDocument loadedData = XDocument.Load("book.xml");
var data = from query in loadedData.Descendants("paragraph")
select new CountryData
{
Title = (string)query.Element("title"),
Des = (string)query.Element("text").Value.ToString(),
Position = (int)query.Element("position"),
};
countryList = data.ToList();
如何显示Des variable.i使用的文本块显示。 “TextBlock Text =”{Binding Des}“FontSize =”20“TextWrapping =”Wrap“/>” 如何使用navigatatostring方法显示html内容。
答案 0 :(得分:1)
我发现的最佳方法是使用附加的依赖项属性,您可以在我的网站Binding Html to the Web Browser Control上看到此示例。我没注意到的一个问题是,你只能在控件加载后调用NavigateToString,这样你就可能需要构建你的代码,以便在此之后发生国家的负载。