Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Control press "back button" and disable close the application using a dialog for confirm - wp7

I need show a simple dialog with the question : 'Do you want to exit the application?' YES or NO. This dialog will be shown when the user presses the back button of the device.

I know how I can show this dialog , but I don't know how to disable the back action: close app.

It's always closed.

like image 548
Juan Pedro Avatar asked Oct 12 '11 14:10

Juan Pedro


1 Answers

If I understand you correctly, you want to display a confirmation dialog when the user clicks the back button on the main page of your app to ask whether they really want to exit. If the user selects Yes the app exits, otherwise you cancel the back navigation. To do this, in the MainPage class constructor hook up an event handler

MainPage()
{
  BackKeyPress += OnBackKeyPressed;
}

void OnBackKeyPressed( object sender, CancelEventArgs e )
{
  var result = MessageBox.Show( "Do you want to exit?", "Attention!", 
                                MessageBoxButton.OKCancel );

  if( result == MessageBoxResult.OK ) {
    // Do not cancel navigation
    return;
  }
  e.Cancel = true;
}
like image 74
Praetorian Avatar answered Dec 09 '22 18:12

Praetorian