我开发了windows phone 8应用程序,在移动第二页后当我点击后退键按钮我想要app移动到停用状态并且同时没有移动到Main-page并关闭应用程序然后我们再次选择那个app意味着我只需要开始第二页。
我在这里尝试过:
MainPage.xaml中:
<Button x:Name="start" Content="Go to secondpage" Height="150"
FontSize="37" Click="start_click"/>
MainPage.xaml.cs中:
private void start_click(object sender, RoutedEventArgs e)
{
NavigationService.Navigate(new Uri("/Secondpage.xaml",UriKind.Relative));
}
Secondpage.xaml.cs:
protected override void OnBackKeyPress(System.ComponentModel.CancelEventArgs e)
{
// what can I enter for minimize the app
}
我使用了Application.Current.Terminate()
和NavigationService.RemoveBackEntry()
,但它已进入Application_closing状态,因此我选择该应用意味着它将选择主页。
我需要进入Application_Deactivated状态吗?