This question is locked. New answers and comments are not allowed.
After implementing the PhoneApplicationFrame I get after every ChooserTask(Email, Phonenumber)
following exception:
"Navigation is only supported to relative URIs that are fragments, or begin with '/', or which contain ';component/'.\r\nParameter name: uri"
Implemented the PhoneApplicationFrame like this:
following exception:
"Navigation is only supported to relative URIs that are fragments, or begin with '/', or which contain ';component/'.\r\nParameter name: uri"
Implemented the PhoneApplicationFrame like this:
private void InitializePhoneApplication() { if (phoneApplicationInitialized) return; // Create the frame but don't set it as RootVisual yet; this allows the splash // screen to remain active until the application is ready to render. RadTransition transition = new RadTurnstileTransition(); RadPhoneApplicationFrame frame = new RadPhoneApplicationFrame(); frame.Transition = transition; RootFrame = frame; ////RootFrame = new PhoneApplicationFrame(); RootFrame.Navigated += CompleteInitializePhoneApplication; // Handle navigation failures RootFrame.NavigationFailed += RootFrame_NavigationFailed; // Ensure we don't initialize again phoneApplicationInitialized = true; }