如何重定向到其存在的特异性项目在其他项目中的另一个页面中具有相同的溶液页?(How to redir

2019-09-02 17:14发布

我有Windows手机解决方案; 其中包含两个C#项目。 我有一个在第一个项目上的网页按钮; 我们重定向在第二个解决方案的用户到另一个页面。 如何重定向到其存在的特异性项目在其他项目中的另一个页面中具有相同的溶液页? 因为我们用下面的代码在同一个项目中的页面之间重定向。

NavigationService.Navigate(new Uri("/MainPage.xaml", UriKind.Relative));

Answer 1:

如果你引用的其他项目,可以用下面的方法:

NavigationService.Navigate(new Uri("/YourOtherProjectName;component/TargetPage.xaml", UriKind.Relative));

编辑:如果有人有兴趣,我已经把在Github上的示例项目: https://github.com/tpetrina/blogcode/tree/master/BlogResearch 。 WP7应用项目被称为NavigateToLibraryPage,它包含一个按钮导航到该页面在名为wp7.library引用的类库



文章来源: How to redirect to a page which exists in specif project to another page in other project in the same solution?