/// <summary> /// Overrides <see cref="Activity.OnResume"/>. If you override /// this method in your own Activities, make sure to call /// base.OnResume to allow the <see cref="NavigationService"/> /// to work properly. /// </summary> protected override void OnResume() { CurrentActivity = this; if (string.IsNullOrEmpty(ActivityKey)) { ActivityKey = NextPageKey; NextPageKey = null; } base.OnResume(); }
/// <summary> /// If possible, discards the current page and displays the previous page /// on the navigation stack. /// </summary> public void GoBack() { ActivityBase.GoBack(); }