Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在制作一个网络浏览器应用程序。当单击按钮 2 并关闭主页(浏览器+搜索栏等)时,我需要打开第 1 页(设置)。
后退按钮会回到主页吗?
您可以使用NavigationService在PhoneApplicationPage之间导航
举个简单的例子:
NavigationService.Navigate(new Uri("/page1.xaml",UriKind.Relative));
是的,手机上的后退按钮将在应用程序页面历史记录中向后移动。