我使用下面的代码进行xml解析:
var data = from query in loadedData.Descendants("chapter")
select new CountryData
{
Title = (string)query.Element("title"),
Des = (string)query.Element("text"),
Position = (int)query.Element("position"),
};
countryList = data.ToList();
如何将信息导航到下一页。
答案 0 :(得分:2)
来自:http://windowsphonegeek.com/articles/WP7-Navigation-in-depth--Navigation-Framework
当我们想要在页面之间传递一些数据时,我们必须:
关于如何使用NavigationContext,请点击链接。