I develop a library for WinPhone app. This library contains several screens.
If I would like to navigate to another view in the same project I can use code like this:
NavigationService.Navigate(new Uri("/NewTaskPage.xaml", UriKind.Relative));
How can I navigate to view from another (relative) project (my library for example)?
Thanks