如何将xml解析为一页到另一页?

如何将xml解析为一页到另一页?,xml,windows-phone-7,Xml,Windows Phone 7,我使用以下代码进行xml解析: var data = from query in loadedData.Descendants("chapter") select new CountryData { Title = (string)query.Element("title"), Des = (string)query.Element(

我使用以下代码进行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();
如何将信息导航到下一页。

来自:

当我们想在页面之间传递一些数据时,我们必须:

  • 形成查询字符串
  • 使用NavigationContext

有关如何使用NavigationContext,请访问链接。

我了解页面之间的导航。我使用章节标记提取标题值。如何提取内部标题值。请帮助我。