c# - Redirect to another page in different project of same solution -


so made wp8 app , split them separate projects, , put button redirects app's page other page on separate project have added. how program when tap button, redirects me page of different project same solution?

the code used is:

app.rootframe.navigate(new uri("/mainpage.xaml", urikind.relativeorabsolute));

try this:

navigationservice.navigate(new uri("/targetprojectname;/targetpage.xaml", urikind.relative)); 

Comments

Popular posts from this blog

java - How to specify maven bin in eclipse maven plugin? -

Error while updating a record in APEX screen -

c++ - In an add-in in Excel, written in C(++), how does one get the name of the function which called into the addin? -