Confirmation dialog box for exit in Windows Phone 7

Source: Internet
Author: User
Tags exit in

In the development of the Windows Phone 7 program, there is no way to exit the program. You can only use the back button on the mobile Phone.

If you want to click the back button on the page to exit, a dialog box will pop up to confirm with the user, which can be implemented as follows:

1 public MainPage ()
2 {
3 InitializeComponent ();
4
5 this. BackKeyPress + = new EventHandler <System. ComponentModel. CancelEventArgs> (MainPage_BackKeyPress );
6}

Define the exit button handler:

1 void MainPage_BackKeyPress (object sender, System. ComponentModel. CancelEventArgs e)
2 {
3 if (MessageBox. Show ("are you sure you want to exit this program? "," Reminder ", MessageBoxButton. OKCancel) = MessageBoxResult. Cancel)
4 {
5 e. Cancel = true; // operation canceled
6}
7}

In this way, the confirmation dialog box is displayed when you click the back button on the MainPage.

When the input method is called, clicking the back button only hides the input method and does not trigger the BackKeyPress event on the page.

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.