I have a solution for Windows Phone; which contain two C # projects. I have a button in one on the pages of the first project; which we redirect the user to another page in the second solution. How to redirect to a page that exists in a particular project, to another page in another project in the same solution? since we use the following code to redirect between pages in the same project.
NavigationService.Navigate(new Uri("/MainPage.xaml", UriKind.Relative));
source share