たとえば、App.Xaml.cs (App.Xaml のコード ビハインド) の Application_UnhandledException メソッドに次の行を入力してみてください
"MessageBox.Show(e.ExceptionObject.Message);" . これにより、デバッガーがまだブラウザーに接続されていない場合に何が問題になるかがわかります。Visual Studio では、[デバッグ] メニュー -> [プロセスにアタッチ] で手動でデバッガをブラウザにアタッチし、たとえば「Silverlight, x86」タイプのプロセスを選択できます。
private void Application_UnhandledException(object sender, ApplicationUnhandledExceptionEventArgs e)
{
MessageBox.Show(e.ExceptionObject.Message);
// If the app is running outside of the debugger then report the exception using
// the browser's exception mechanism. On IE this will display it a yellow alert
// icon in the status bar and Firefox will display a script error.
if (!System.Diagnostics.Debugger.IsAttached)
{
// NOTE: This will allow the application to continue running after an exception has been thrown
// but not handled.
// For production applications this error handling should be replaced with something that will
// report the error to the website and stop the application.
e.Handled = true;
Deployment.Current.Dispatcher.BeginInvoke(delegate { ReportErrorToDOM(e); });
}
}