AppStore.Templates.WordInfoPage.Next_Click C# (CSharp) Method

Next_Click() private method

It populates the next word question in the current view.
private Next_Click ( object sender, RoutedEventArgs e ) : void
sender object Object Sender is a parameter called Sender that contains a reference to the control/object that raised the event.
e Windows.UI.Xaml.RoutedEventArgs RoutedEventArgs e is a parameter called e that contains the event data, see the RoutedEventArgs MSDN page for more information.
return void
        private void Next_Click(object sender, RoutedEventArgs e)
        {
            if (puzzle.getActiveCount() + 1 == puzzle.getSpellingsList().Count) Frame.Navigate(typeof(ScorePage));
            puzzle.setActiveCount(puzzle.getActiveCount() + 1);
            Frame.GoBack();
        }