导航到另一个页面时,如何使我的对象列表可用于另一个页面。
例如在我的 mainpage.xaml
var data2 = from query in document.Descendants("weather")
select new Forecast
{
date = (string)query.Element("date"),
tempMaxC = (string)query.Element("tempMaxC"),
tempMinC = (string)query.Element("tempMinC"),
weatherIconUrl = (string)query.Element("weatherIconUrl"),
};
forecasts = data2.ToList<Forecast>();
....
NavigationService.Navigate(new Uri("/WeatherInfoPage.xaml", UriKind.Relative));
然后在我的另一堂课上,我想让它可用,这样我就可以像这样使用它
private void AddPageItem(List<Forecast> forecasts)
{
..
}