別のページに移動するときに、オブジェクトのリストを別のページで使用できるようにするにはどうすればよいですか。
たとえば、私の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)
{
..
}