ここでどこが間違っていますか?
private void lstCars_SelectionChanged(object sender, SelectionChangedEventArgs e)
{
string currCar = (sender as ListBox).SelectedItem as string;
NavigationService.Navigate(new Uri("/ViewCarDetails.xaml?info=" + currCar, UriKind.Relative));
}
ここに移動しようとしているページがあります
public ViewCarDetails(string registrationNum)
{
//stuff
}
エラーが発生したときにプログラムがジャンプするコードを次に示します (App.xaml.cs 内)。
private void RootFrame_NavigationFailed(object sender, NavigationFailedEventArgs e)
{
if (System.Diagnostics.Debugger.IsAttached)
{
// A navigation has failed; break into the debugger
System.Diagnostics.Debugger.Break();
}
}
URIを確認しましたが、タイプミスはありません ありがとう