Пример #1
0
        private void BacktoPreviousPage()
        {
            this.navigationHistoryRepository.Store(new UserActivity(this.BackButton.CommandName));
            string previousPage = RouteGuidanceService.GetPreviousPageName();

            this.navigationService.Navigate(previousPage);
        }
Пример #2
0
        private void GotoNextPage()
        {
            this.navigationHistoryRepository.Store(new UserActivity(this.NextButton.CommandName));
            string nextPage = RouteGuidanceService.GetNextPageName();

            this.navigationService.Navigate(nextPage);
        }