문제

I'm trying to navigate to MainPage.xaml if access_token isn't set.

  public Menu()
            {
                InitializeComponent();
                if (((App)App.Current).access_token == null) {
                  NavigationService.Source=new Uri("/MainPage.xaml", UriKind.Relative);//NullReferenceException

                }.../
도움이 되었습니까?

해결책

If this is your Main page and you are just starting the application I wouldn't expect that the Silverlight NavigationService is initialized at the time when the MainPage object is first constructed. I'd guess you're creating Menu in the MainPage constructor, so that would explain the NullReferenceException.

You will need to trigger your navigation at a later event in the MainPage. If it were me I'd try the Loaded event first, but you may need to experiment to get this behaviour correct...

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top