2012-08-06 131 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)); 
    } 
相關問題