如何在Visual Studio 2010 for windows phone中将一个项目文件导航到另一个项目文件,以便我们可以使用xaml文件或彼此使用其他cs文件.........
答案 0 :(得分:4)
这是你需要做的:
private void hyperlinkButton1_Click(object sender, RoutedEventArgs e)
{
NavigationService.Navigate(new Uri("/SecondPage.xaml", UriKind.Relative));
}
您可以在此处http://msdn.microsoft.com/library/windows/apps/ff626521(v=vs.105).aspx
详细了解