I'm trying to navigate to a page with the help of Immediate Window
in Visual Studio. I'm using Windows Phone 8.1 Emulators. Normally when writing things like x = 1;
etc. does work very well. But when I'm trying to use navigation service,
NavigationService.Navigate(new Uri("/ErrorPage.xaml",UriKind.Relative));
But it does not let me to do so with error message as The expression cannot be evaluated while in run mode.
So I'm wondering if there is any option to let the navigation service work?
Note: The project is in TFS and I cannot check-out the page(neither XAML or code behind), so I have no option to add a temp button to the page.