Ejemplo n.º 1
0
        private void ActivitiesButton_Click(object sender, RoutedEventArgs e)
        {
            //Get the forms data using the harvest data method
            //Generate a person with the data collected to pass on
            //to pageActiviyu

            var personData = HarvestData();

            if (formDataVaild)
            {
                var pageActivity = new PageActivity(personData);
                this.NavigationService.Navigate(pageActivity);
            }
        }
Ejemplo n.º 2
0
        private void SummaryPageBackButton_Click(object sender, RoutedEventArgs e)
        {
            var pageActivity = new PageActivity();

            this.NavigationService.Navigate(pageActivity);
        }