我是 Windows 手机开发新手。我正在关注这篇出色的文章 ( http://developer.nokia.com/Community/Wiki/Weather_in_Windows_Phone_7 ),并了解了如何加载 xml 数据并将其显示为 paronama 视图中的有用信息。但现在我希望它不是全景图,而是显示为页面。我不确定它是否在我应该使用的页面标签或数据网格标签中。有人可以帮助我如何将这段代码转换为可以在页面中显示的东西
// create PanoramaItem
PanoramaItem panoramaItem = new PanoramaItem();
panoramaItem.Header = queries[query];
// modify header to show only city (not the country)
int index = queries[query].IndexOf(",");
if (index != -1)
panoramaItem.Header = queries[query].Substring(0,queries[query].IndexOf(","));
else panoramaItem.Header = queries[query];
// use ForecastTemplate in Panorama Item
panoramaItem.ContentTemplate=(DataTemplate)Application.Current.Resources["ForecastTemplate"];
panoramaItem.Content = pio; // add Panorama Item to Panorama
Panorama.Items.Add(panoramaItem); // query next city forecast