Windows Phone 8.1 Universal App terminates on navigating back from second page?
问题 I have 2 pages in my Windows Phone 8.1 Universal App. I navigate from Page1 .xaml to Page2 .xaml by using a button with the click event code: this.Frame.Navigate(typeof(Page2)); When I am on Page2, and I use the hardware back button the app closes without an exception or anything. It just returns to the startscreen. I already tried the following on Page 2 : public Page2() { this.InitializeComponent(); Windows.Phone.UI.Input.HardwareButtons.BackPressed += HardwareButtons_BackPressed; } void