デフォルトの overview.xaml をリストビューのあるフレームにロードしており、ダブルクリックした項目の詳細ページにリダイレクトしたいと考えています。しかし、どのアイテムがダブルクリックされたかを詳細ページに教えるにはどうすればよいでしょうか?
void ListView_MouseDoubleClick(object sender, MouseButtonEventArgs e)
{
//send post info of selected item or similar missing...
this.Content = "Details.xaml";
}
ロズング:
this.NavigationService.Navigate(new Details(selectedItem)); //Details has a Constructor