Interaction logic for OptionsPage.xaml
Inheritance: System.Windows.Controls.Page
Example #1
0
        /// <summary>
        /// Navigates to options page.
        /// </summary>
        private void NavigateToOptionsPage()
        {
            var optionsPage = new OptionsPage(this);

            this.NavigationService.Navigate(optionsPage);
        }
Example #2
0
 /// <summary>
 /// Handles the Click event of the btnOptions 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 btnOptions_Click( object sender, RoutedEventArgs e )
 {
     var optionsPage = new OptionsPage();
     optionsPage.BatchPage = this;
     this.NavigationService.Navigate( optionsPage );
 }
 /// <summary>
 /// Navigates to options page.
 /// </summary>
 private void NavigateToOptionsPage()
 {
     var optionsPage = new OptionsPage( this );
     this.NavigationService.Navigate( optionsPage );
 }