私は Windows phone dev の初心者です。私はこの優れた記事 ( http://developer.nokia.com/Community/Wiki/Weather_in_Windows_Phone_7 ) をフォローしており、xml データを読み込んでそれを有用な情報としてパロナマ ビューに表示する方法について学びました。しかし、パノラマの代わりにページとして表示したいのです。使用する必要があるページ タグまたはデータ グリッド タグのどちらに含まれているかはわかりません。このコードをページに表示できるものに変換する方法を教えてください。
// 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