I am writing application on Windows Phone 8.1 and I have problem with navigating to another page. Probably I can't use Frame.Navigate in proper way. I want to navigate to page for example InformationView (which is in Views folder). I did it like this:
Frame.Navigate(typeof(InformationView));
but I have error: Cannot convert from System.Type to System.Uri. I'm new in Windows Phone and don't understand this problem. Anybody can help?
InformationViewof typePage? - Kristian VukusicPhoneApplicationPagemeans the project is a Windows Phone Silverlight project. TheFrame.Navigatehas different signatures in Windows Phone Silverlight and Windows Phone Runtime projects, WP Sliverlight acceptsSystem.Uriwhile WP Runtime acceptsSystem.Type. Be aware of this when looking for examples or documentation in the internet. - ap3rus