2012-08-06 133 views

回答

0

是的,用快速的谷歌搜索或StackOverflow搜索,你会发现它。但是,因为我心情很好:

protected override void OnBackKeyPress(System.ComponentModel.CancelEventArgs e) 
{ 
    if (DecoderPrompt.IsOpen)   
    { 
     e.Cancel = true; 
     // Navigate to different page: 
     NavigationService.Navigate(new Uri("/View/YourView.xaml", UriKind.Relative)); 
    } 
相关问题