AppStore.MainPage.MoreCategories_Click C# (CSharp) Method

MoreCategories_Click() private method

Executed when the "more" button is tapped in the Featured Categories section. It navigates to the Categories Page, which lists all the categories.
private MoreCategories_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 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 MoreCategories_Click(object sender, RoutedEventArgs e)
        {
            Frame.Navigate(typeof(CategoriesPage));
        }