昨天刚刚下载了 WP7 SDK - 我是 Silver light 的新手 - 和一般的应用程序开发。
我只是试图将我的用户定向到不同的页面,但我在一行代码上发生了 NullReferenceException 错误。愚蠢的事情-上面的代码完全相同-但不会抛出错误?
if (myISO.DirectoryExists("Logs") && myISO.DirectoryExists("DataStore"))
{
NavigationService.Navigate(new Uri("Sign-in.xaml", UriKind.Relative));
}
else
{
NavigationService.Navigate(new Uri("Welcome.xaml", UriKind.Relative));
//Above Line Causes Exception^
}
此外,我在 App.xaml.cs 中得到一个 NullRefernceException - 我什至没有更改 - 它正在工作 - 现在它没有:
PhoneApplicationService.Current.UserIdleDetectionMode = IdleDetectionMode.Disabled;