AppStore.CategoriesPage.MyApps_Click C# (CSharp) Method

MyApps_Click() private method

Executed when the My-Apps Button is tapped from the Application bar. The app navigates to the My-Apps page.
private MyApps_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 MyApps_Click(object sender, RoutedEventArgs e) { Frame.Navigate(typeof(MyAppsPage)); }