Interaction logic for OptionsPage.xaml
Inheritance: System.Windows.Controls.Page
Exemple #1
0
        /// <summary>
        /// Handles the Click event of the mnuOptions 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 mnuOptions_Click(object sender, RoutedEventArgs e)
        {
            OptionsPage optionsPage = new OptionsPage();

            this.NavigationService.Navigate(optionsPage);
        }
Exemple #2
0
 /// <summary>
 /// Handles the Click event of the mnuOptions 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 mnuOptions_Click( object sender, RoutedEventArgs e )
 {
     OptionsPage optionsPage = new OptionsPage();
     this.NavigationService.Navigate( optionsPage );
 }