在我的mainpage.xaml
中,我检查了本地存储,如果 GetAccept 方法返回 false,我需要重定向到,Mentions.xaml
但问题是 NavigationService 在此步骤中为 Null,因此我捕获了 nullreferenceexecption
public MainPage()
{
CacheManager cache = new CacheManager();
if (!cache.GetAccept())
{
NavigationService.Navigate(new Uri("/Views/AppBar/Mentions.xaml", UriKind.RelativeOrAbsolute));
}
InitializeComponent();
}
我该如何做这个重定向?