In my mainpage.xaml, I check the localstorage, if the method GetAccept return false, I need to redirect to Mentions.xaml but the problem is that the NavigationService is Null in this step so i catch nullreferenceexecption
public MainPage()
{
CacheManager cache = new CacheManager();
if (!cache.GetAccept())
{
NavigationService.Navigate(new Uri("/Views/AppBar/Mentions.xaml", UriKind.RelativeOrAbsolute));
}
InitializeComponent();
}
How can I do this redirection?