Interaction logic for SelectPersonsPage.xaml
Inheritance: System.Windows.Controls.Page
Ejemplo n.º 1
0
        /// <summary>
        /// Handles the Click event of the btnStart control.
        /// </summary>
        /// <param name="sender">The source of the event.</param>
        /// <param name="e">The <see cref="RoutedEventArgs"/> instance containing the event data.</param>
        private void btnStart_Click(object sender, RoutedEventArgs e)
        {
            SelectPersonsPage nextPage = new SelectPersonsPage();

            this.NavigationService.Navigate(nextPage);
        }
Ejemplo n.º 2
0
 /// <summary>
 /// Handles the Click event of the btnStart control.
 /// </summary>
 /// <param name="sender">The source of the event.</param>
 /// <param name="e">The <see cref="RoutedEventArgs"/> instance containing the event data.</param>
 private void btnStart_Click( object sender, RoutedEventArgs e )
 {
     SelectPersonsPage nextPage = new SelectPersonsPage();
     this.NavigationService.Navigate( nextPage );
 }