2012-11-01 70 views

回答

0

你應該改變項目的代碼單擊事件:

所以,與其在下面的代碼中Frame.Navigate,讓你想從單擊項目定位到和它發佈到網路網站瀏覽器

void ItemView_ItemClick(object sender, ItemClickEventArgs e) 
    { 
     // Navigate to the appropriate destination page, configuring the new page 
     // by passing required information as a navigation parameter 
     var groupId = ((SampleDataGroup)e.ClickedItem).UniqueId; 
     this.Frame.Navigate(typeof(SplitPage), groupId); 
    } 
相關問題